vote up 2 vote down star

Hello all. I'm working on a website that requires a flash mp3 player. I have absolutely no idea the procedures from messing with flash/actionscript/flex etc., however I need to edit the flash very slightly (I need to add two lines of code). There are a multitude of tutorials out there for setting up a flash (or flex or whatever) development environment but, as my needs are so simple, I'd like to go a little more light-weight than that (also, many seem outdated). I guess what I'm saying is I'm looking for a simple way to recompile some existing actionscript (command line is a plus!). Does anyone have a trick up their sleeve to accomplish this?

flag

63% accept rate

3 Answers

vote up 4 vote down check

Download the free/opensource Flex 3 SDK. This includes an ActionScript3 compiler. Run the compiler like this:

mxmlc MyAs3File.as
link|flag
Thanks man. That's exactly what I needed, except I'm trying to compile something written in actionscript2. I assume this would produce errors? – danwoods Apr 23 at 3:13
1  
Did you try MTASC? If that fails, find somebody with MacOS or Windows (or install it yourself in a virtual machine), and compile in Flash CS. A demo version is available at adobe.com. – Ole J. Helgesen Apr 23 at 20:15
mxmlc can only compile ActionScript3 class files and Flex MXML files. – Ole J. Helgesen Apr 23 at 20:17
vote up 1 vote down

You can compile it online here: http://wonderfl.kayac.com/. No mess that way.

link|flag
1  
Thanks, site looks good. I'll try it when I get home... – danwoods Apr 22 at 3:00
vote up 1 vote down

There's MTASC for ActionScript 2.

link|flag
I'm under the impression they have actionscript 3 out now. Wouldn't I want to compile with the latest standards? What's the difference? – danwoods Apr 22 at 4:16
Yes, Adobe have released version 3, but MTASC supports only ActionScript 2, like it says on the webpage. – Ben Alpert Apr 22 at 4:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.