Is there a way to test Flash ActionScript scripts without having Flash installed and running them inside a swf?
-
Why don't you have flash installed? – SLaks Dec 31 '09 at 22:57
-
What exactly are you trying to test? Graphics? Sound? Syntax? – Kaleb Pederson Dec 31 '09 at 23:02
-
syntax, and simple things like: function add(a, b){return a+b;} – daniels Dec 31 '09 at 23:31
3 Answers
You could download the Flex SDK for free and use that, or use the Flex Module for Apache and IIS, if you need to check scripts online. I'm guessing it's what sites like Wonderfl use.
Otherwise, for simple things like
function add(a, b){return a+b;}
You might as well adjust lint or find something similar.

- 1
- 1

- 50,687
- 19
- 144
- 218
I would highly recommend flash develop. It works with flex sdk. it actually runs more smoother too. Not only this but it makes a far better IDE then flash cs4. it has a far better intellisense, and it also does intellisense for customs class. I have flash cs4 and I still use flashdevelop

- 10,524
- 36
- 130
- 209
While this may be a technicality, you could run actionscript code in the Adobe AIR runtime, as opposed to the Flash Player. Deep down, though, there's still a swf involved in the creation of your AIR app.

- 549
- 3
- 4