Although I am using Flash CS3 for development, my project is virtually pure AS3; My .FLA file is nothing more than a movie of 640x480 , no classes, no controls or libraries and my Action window has a single line of code
include 'myscript.as'
which is one big as3 file of about 10,000 lines....
The swf file generated is only around 18k in size, but a lot is happening within the app....
My question/problem is , how do I compile my 'myscript.as' with flex instead of cs3? ( I want to make use of the newer as3 functions , and want to compile via the command line )
I should mention, I've noticed in a lot of AS3 code there is something like the following
public class someapp extends sprite
{
....
}
I have no classes whatsoever in the code because everything runs inside my own state machine, will this be a problem with flex ? or can flex compile anything cs3 can compile ??
the swf (it's a video chat,airtime type app) is at http://www.mebeam.net/chat_SO_demo