Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thanks for taking the time to read... here is my question/scenario, its a quick one:

I have:

Stage -> SWF Loader Root -> SWF Loader -> MovieClip -> Nested MC

From within "Nested MC": I can only access "SWF loaders root" time line, I can't seem to get access to the stage's functions...

Within "Nested MC" I used:

this.parent                 <- shows "MovieClip"
this.parent.parent          <- shows "SWF Loader"
this.parent.parent.parent   <- shows "SWF Loader Root"
this.parent.parent.parent.parent <- SHOWS NULL!!!! 

Im trying to call on a function which resides on the main time line. Is there any way to access the main timeline? Any suggestions will be greatly appreciated.

Am I missing something trivial? Im learning

Sam

share|improve this question
Or does this appear to be the proper way? – OverMars Aug 10 '11 at 20:24

1 Answer

up vote 3 down vote accepted

You probably want to dispatch an event from your nested MC then listen for the event from the main timeline. Sounds like you're a few layers deep in the display, so make sure you set "bubbles" to true.

From nested MC:

dispatchEvent(new Event("your_custom_event_name", true));

Then on the main timeline:

addEventListener("your_custom_event_name", customEventHandler);

function customEventHandler(e:Event):void {
    mainTimelineFunction();
}

function mainTimelineFunction():void {
    trace("success");
}
share|improve this answer
Corey, Thank you so much, I will try right away, appears to be the solution! – OverMars Aug 10 '11 at 20:51
YES, Corey, thankyou again, I can stop banging my head against the wall. Would you mind voting me up? thnx a million – OverMars Aug 10 '11 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.