Results 1 to 4 of 4
-
December 2nd, 2008, 03:21 PM #142Registered User
postshaving a child detect when the mouse leaves the stage
I'm using the following to detect when the mouse leaves the stage, which is working fine until I try to add my movie as a child inside another swf when preloading. Then it breaks with a runtime error. I've tried playing around with adding the eventlistener to the parent stage, but can't see to get it to work.
Any advice?
Thanks.
Code:stage.addEventListener(Event.MOUSE_LEAVE, hideMe);
-
December 2nd, 2008, 03:51 PM #2
You need to pass the stage as a param..
Code:mychild.myfunction(stage); //in your child place public function myfunction(s:stage){ s.addEventListener(Event.MOUSE_LEAVE, hideMe); }
-
December 2nd, 2008, 03:57 PM #312Registered User
postsAny time you load a swf into another swf you don't want the swf you're loading to reference the stage until it is added to the stage. That is, using addChild to add it to the stage because the stage reference for the loaded swf is null until it is added to the display list somewhere in the swf you're loading into. So before adding the event listener to the stage reference you need to check that the swf you're loading has been added to the stage. You do this by adding the following code to the swf you're loading.
this.addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
and then you can put your code that references the stage inside the event handler like the following:
function onAddedToStage(e:Event):void
{
stage.addEventListener(blah blah);
}
Hope this helps.
-
December 2nd, 2008, 04:40 PM #442Registered User
postsYes, this makes perfect sense and helps a lot. Thanks!

Reply With Quote

Bookmarks