NOTE: This tutorial does not explain how to learn or use Actionscript, or even what Flixel is! If you want to know more about these things or other topics, please check out the general help thread. Thanks!Building and running Flex projects is very easy, even without an IDE:
1. Make sure to download and install the Flex SDK.
http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk2. Make sure to download and install a Flash standalone player
http://download.macromedia.com/pub/flashplayer/updaters/9/flash_player_9_linux_dev.tar.gz and/or
http://download.macromedia.com/pub/flashplayer/updaters/10/flash_player_10_linux_dev.tar.gz3. Download and unzip the flixel_v1.0.zip
4. Include the path to your mxmlc binary. `export PATH=$PATH:/path/to/your/mxmlc`
5. Also include the path to your flashplayer. `export PATH=$PATH:/path/to/your/flashplayer`
6. Move to the flixel_v1.0 directory. `cd /path/to/flixel_v1.0`
7. Compile the Mode demo game. `mxmlc Mode.as`
8. It should compile without any errors.
9. Run the demo game in standalone. `flashplayer Mode.swf`
I've tried to be as thorough as possible. I'm assuming some experience with Linux, but if there are any questions, please ask.
Thank you.