Hello.
I want to call an App function inside a (I know about the Component scope already).
What I mean is this:
<mx:Script>
<![CDATA[
public someFunction():void {
// bla bla bla
}
</mx:Script>
And:
<mx:Component>
<mx:Label text="{data.something}" click="someFunction()" />
</mx:Component>
How can I do something like that? Is that possible first of all?