I have a small issue that I am sure that is solved relatively easily by
all the pros here.
I have been running into a IUIComponent issue on a component that is
loading and I have determined that I need to delay the loading of this
component a second or so.
The component sits on a canvas with a tab navigator and I want to delay
the load of this component until the specific tab is clicked on. I was
thinking that I need to set the show event of the tab to run a function
that would launch the component but I don't the syntax for doing this.
Something like this?
public function loadItem(event:Event):void{
mycomponent.load()
}
Thanks!