This content has been marked as final.
Show 3 replies
-
1. Re: Accessing a main timeline function from a object's timeline
Ned Murphy Jun 14, 2014 4:51 AM (in response to rahex)A couple ways would be to just use...
MovieClip(root).addBubbles(); OR MovieClip(parent).addBubbles();
Another way would be to have the MovieClip dispatch a custom event for which you have a listener assigned in the main timeline. THat listener in the main timeline would have an event handler function that calls the addBubbles function.
-
2. Re: Accessing a main timeline function from a object's timeline
rahex Jun 14, 2014 7:15 AM (in response to Ned Murphy)Thank you, Ned!
Works perfectly
-
3. Re: Accessing a main timeline function from a object's timeline
Ned Murphy Jun 14, 2014 7:19 AM (in response to rahex)You're welcome


