Mega Code Archive
Categories
/
Flex
/
Event
To use the Event object, you specify it as a parameter in the event handler function
import mx.controls.Alert; private function myEventHandler(e:Event):void { Alert.show("An event of type '" + e.type + "' occurred."); }