ASKER
ASKER
Apache Flex is a highly productive, open source application framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops and devices (including smartphones, tablets and television). It provides a modern, standards-based language and programming model that supports common design patterns suitable for developers from many backgrounds. Flex applications can be deployed to the Adobe Player in the browser, Adobe AIR on desktop and mobile devices or to native Android, iOS, Windows or Mac applications.
TRUSTED BY
You should dispatch from child an event
http://livedocs.adobe.com/flex/3/html/help.html?content=mxmlcomponents_advanced_4.html
this.dispatchEvent(workflo
By before add a metadata in your MXML for handle this event from outside
Lets believe you have class com.mycompany.events.Workf
And event type is “searchEvent”
In this case client MXML declaration will be
<mx:Metadata>
[Event(name=" searchEvent ", type="com.mycompany.events.Workf
</mx:Metadata>
Now you can handle this event from a parent class
<workflowNavigation:Workfl
Private var onSearchEvent(event: WorkflowSearchEvent):void{
By before add a metadata in your MXML for handle this event from outside
Lets beleive you have class com.mycompany.events.Workf
<mx:Metadata>
[Event(name="eventName", type="eventType")]
</mx:Metadata>