Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:30:27Z http://stackoverflow.com/feeds/question/709107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709107/best-practice-for-actionscript-2-events-is-there-a-way-to-simulate-actionscript 2 Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events? Iain 2009-04-02T10:05:08Z 2009-11-12T08:17:06Z <p>I love the AS3 event model - it helps keep my code clean and lossely coupled. When I used to work on AS2 projects, my code was not so neat and classes were more reliant on one another. Due to AS2's strange handling of scope I never really got on with the AS2 event system.</p> <p>As I still occasionally have to work in AS2, my question is: </p> <p>Has anyone managed to simulate the AS3 event API in AS2, and if not, what is the best practice for listening to and dispatching events and handling scope?</p> http://stackoverflow.com/questions/709107/best-practice-for-actionscript-2-events-is-there-a-way-to-simulate-actionscript/709178#709178 2 Answer by Lillemanden for Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events? Lillemanden 2009-04-02T10:30:06Z 2009-04-02T10:30:06Z <p>I would guess the best practice would be to use the EventDispatcher class where ever posible. You can read about it here: <a href="http://help.adobe.com/en%5FUS/AS2LCR/Flash%5F10.0/help.html?content=00002325.html" rel="nofollow">http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00002325.html</a></p> <p>The UI components also have very AS3-like event dispatching.</p> http://stackoverflow.com/questions/709107/best-practice-for-actionscript-2-events-is-there-a-way-to-simulate-actionscript/709952#709952 6 Answer by Matt W for Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events? Matt W 2009-04-02T14:33:35Z 2009-04-02T14:39:08Z <p>Its quite easy to do this, actually. A couple of classes should get you going. The first being an <code>Event</code> class, as follows:</p> <pre><code>class com.rokkan.events.Event { public static var ACTIVATE:String = "activate"; public static var ADDED:String = "added"; public static var CANCEL:String = "cancel"; public static var CHANGE:String = "change"; public static var CLOSE:String = "close"; public static var COMPLETE:String = "complete"; public static var INIT:String = "init"; // And any other string constants you'd like to use... public var target; public var type:String; function Event( $target, $type:String ) { target = $target; type = $type; } public function toString():String { return "[Event target=" + target + " type=" + type + "]"; } } </code></pre> <p>Then, I use two other base classes. One for regular objects and on for objects that need to extend <code>MovieClip</code>. First the non <code>MovieClip</code> version...</p> <pre><code>import com.rokkan.events.Event; import mx.events.EventDispatcher; class com.rokkan.events.Dispatcher { function Dispatcher() { EventDispatcher.initialize( this ); } private function dispatchEvent( $event:Event ):Void { } public function addEventListener( $eventType:String, $handler:Function ):Void { } public function removeEventListener( $eventType:String, $handler:Function ):Void { } } </code></pre> <p>Next the <code>MovieClip</code> version...</p> <pre><code>import com.rokkan.events.Event; import mx.events.EventDispatcher; class com.rokkan.events.DispatcherMC extends MovieClip { function DispatcherMC() { EventDispatcher.initialize( this ); } private function dispatchEvent( $event:Event ):Void { } public function addEventListener( $eventType:String, $handler:Function ):Void { } public function removeEventListener( $eventType:String, $handler:Function ):Void { } } </code></pre> <p>Simply extend your objects with either Dispatcher or DispatcherMC and you will be able to dispatch events and listen for events similarly to AS3. There are just a few quirks. For example, when you call <code>dispatchEvent()</code> you have to pass in a reference to the object dispatching the event, usually just by referring to the object's <code>this</code> property.</p> <pre><code>import com.rokkan.events.Dispatcher; import com.rokkan.events.Event; class ExampleDispatcher extends Dispatcher { function ExampleDispatcher() { } // Call this function somewhere other than within the constructor. private function notifyInit():void { dispatchEvent( new Event( this, Event.INIT ) ); } } </code></pre> <p>The other quirk is when you want to listen for that event. In AS2 you need to use <code>Delegate.create()</code> to get the correct scope of the event handling function. For example:</p> <pre><code>import com.rokkan.events.Event; import mx.utils.Delegate; class ExampleListener { private var dispatcher:ExampleDispatcher; function ExampleDispatcher() { dispatcher = new ExampleDispatcher(); dispatcher.addEventListener( Event.INIT, Delegate.create( this, onInit ); } private function onInit( event:Event ):void { // Do stuff! } } </code></pre> <p>Hopefully I copied and pasted all this correctly from my old files! Hope this works out for you.</p> http://stackoverflow.com/questions/709107/best-practice-for-actionscript-2-events-is-there-a-way-to-simulate-actionscript/1720702#1720702 0 Answer by Mims H. Wright for Best practice for ActionScript 2 events - is there a way to simulate ActionScript 3-style events? Mims H. Wright 2009-11-12T08:17:06Z 2009-11-12T08:17:06Z <p>I wrote a few classes for dealing with events in AS2. You can download them here.</p> <p><a href="http://dispatchevent.org/mims/as2-eventdispatcher/" rel="nofollow">http://dispatchevent.org/mims/as2-eventdispatcher/</a></p>