Hi,
How do I call a custom component's public function from the main app. For example, I've got a timer component, MyTimer.
In the main app, I want to call startTimer() or stopTimer().
In the main app, I've got:
<visualcomponent:MyTimer />
In the component, I've got:
public function startTimer():void {
baseTimer = getTimer();
t.start();
}
Any suggestions? Thank you.
-Laxmidi