Reputation: 20350
I want to compile a tiny actionscript file. Is there something out there that exists and works?
I tried compiling and installing swftools without success. I also read about Flex SDK on all other posts. However all links are either broken or outdated. Seems like there isn't a package for Linux?
Upvotes: 1
Views: 5638
Reputation: 86
checkout redbean
http://redtamarin.com/tools/redbean
it is a command line tool written in AS3 that reuse the asc.jar to compile AS3 to ABC (ActionScript ByteCode)
download the redtamarin SDK
http://download.redtamarin.com/
it will gives you redshell, redbean, etc. for Linux
alternatively you can also install as3shebang which will allow you to run AS3 as shell scripts
https://github.com/Corsaair/as3shebang
Upvotes: 0
Reputation: 1559
The easiest way to compile and test out ActionScript is to use Wonderfl. It is a web-based Flash IDE that will compile ActionScript and allow you to view and download the resulting SWF.
To develop on your own machine, you can use the Flex SDK, which can be downloaded from Adobe Open Source. This includes mxmlc
, the command-line ActionScript compiler. You can find more information on using mxmlc
in the Flex documentation. You could also try FB4Linux, a project that ports the Flash Builder IDE to Linux.
Upvotes: 1