What is ActionScript?

1 Answer

Answer :

from Wikipedia : ActionScript is a scripting language based on ECMAScript. ActionScript is used primarily for the development of websites and software using the Adobe Flash Player platform (in the form of SWF files embedded into Web pages). — So, basically, it’s very similar in nature to Javascript (which is also a flavor of ECMAScript). I should think that if you’re relatively familiar with Javascript already, then you’d have a leg up on getting around in ActionScript. Be sure to read the Wikipedia article… and check out the external links they provide to the Adobe developer and support sites.

Related questions

Description : Best books for learning ActionScript?

Last Answer : read the adobe manual here. Not joking. If you know how to program already, this will be the most complete explanation. Plenty of inline go samples as well.

Description : Which is the best javascript and actionscript editor?

Last Answer : if you have a Mac, Textmate, I use it for all my code. love it.

Description : Does not implementing a setter method in ActionScript 3 make the property unsettable?

Last Answer : Assuming what? I don't really get your question, you don't seem like a complete newbie when it comes to actionscript. But the question seems so simple. Is this some issue with ... object orientated programming and as3. Try learning more about encapsulation, for example by reading this tutorial.

Description : How to test for class inheritance in ActionScript 3?

Last Answer : hahahahahahha this is why I haven’t started trying to learn AS yet

Description : Any Flash Actionscript 3.0 experts out there?

Last Answer : well its pretty easy you have to create two assets at your library with the name MyClip and MyButton. At your Main Class use this = btn = new MyButton(); addChild(btn); btn.x = 200; btn.y = 20; btn.addEventListener(MouseEvent.CLICK, function():void { // something here });

Description : Should I learn Actionscript 1 or 2?

Last Answer : If your goal is just to learn basic scripting principles, you might get something out of it, but otherwise you're better off finding more recent tutorials on the Intertubes. There are plenty of them, most of them free.

Description : GDScript vs ActionScript, syntax differences?

Last Answer : GDScript has been the official language of Godot for a long time and it is more stable, C# on the other hand gives you the ability to use all features available in . Net framework / Mono But since C# is new to Godot, it has a Lot of issues and bugs.