
How to create exit button in Flash application - Stack Overflow
I want to add an exit button inside stage but I don't know how to do that with ActionScript 3. I remember that it was possible with fscommand in ActionScript 2 but it's not working in AS3. I've searched …
actionscript 3 - To pass a parameter to event listener in AS3 the ...
Nov 21, 2012 · To pass a parameter to event listener in AS3 the simple way... does it exist? Asked 13 years, 1 month ago Modified 11 years, 11 months ago Viewed 41k times
actionscript 3 - Loading and using SWF files - Stack Overflow
Mar 25, 2012 · In AS3, I've used the Loader class to load and display the external file, my main problem is in communicating with the loaded content, call it's functions, or call root functions from it. In AS2, …
How to wait for 3 seconds in ActionScript 2 or 3? - Stack Overflow
Jul 21, 2015 · Is there any way to implement waiting for, say, 3 seconds in ActionScript, but to stay within same function? I have looked setInterval, setTimeOut and similar functions, but what I really …
actionscript 3 - AS3: cast or "as"? - Stack Overflow
Jan 11, 2013 · (cast) and "as" are two completely different things. While 'as' simply tells the compiler to interpret an object as if it were of the given type (which only works on same or subclasses or …
flash - Dictionary () as3 - Stack Overflow
Dictionary () as3 Asked 14 years, 1 month ago Modified 8 years, 11 months ago Viewed 7k times
flash - AS3 numerical array sorting? - Stack Overflow
AS3 numerical array sorting? Asked 14 years, 5 months ago Modified 6 years, 9 months ago Viewed 17k times
actionscript 3 - Flash AS3 Global Variables? - Stack Overflow
Dec 5, 2009 · how can i create a Global variable in AS3, is AS3 support Global variables like in AS2 ??
How to dispatch an event with added data - AS3 - Stack Overflow
May 4, 2016 · Can any one give me a simple example on how to dispatch an event in actionscript3 with an object attached to it, like dispatchEvent( new Event(GOT_RESULT,result)); Here result is an …
actionscript 3 - AS3 - for (... in ...) vs for each (... in ...
The following code does the exact same thing. Is there a difference between for each and for (... in ...)?