Is there a way to check if the entered frame is already rendered instead of using Timers in
the Event.ENTER_FRAME function handler?
I don't like the idea of using Timer because my code is executed before the frame is
completely loaded.
Here is an example:
addEventListener(Event.ENTER_FRAME, frameEnterEventHandler);
gotoAndPlay("Frame2");
private function frameEnterEventHandler(e:Event):void
{
myMovieClip.visible = false;
}
This code throws an error "Cannot access a property or method of a null object reference." Because myMovieClip which is Movie Clip object in Frame 2 is not rendered yet.
so i have to do the following
private function frameEnterEventHandler(e:Event):void
{
setTimeout(blaBla, 100);
}
private function blaBla():void
{
myMovieClip.visible = false;
}
what I would like to do if its possible
private function frameRenderCompleteEventHandler(e:Event):void
{
myMovieClip.visible = false;
}
Thanks in Advance.