Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help - Controlling A Timeline in another Movie

Status
Not open for further replies.

B52AlphaJackal

Technical User
Mar 5, 2007
52
GB
could somebody please explain to me how i can have a movie load up say for example on layer 1 using

"loadMovieNum("name.swf", 1);"

... and have a button in another movie loaded into say layer 3...

how can i have the button on layer 3 control the timeline on layer 2...

i just cant figure it out...

please help me!
 
First you're confusing layers and levels (that only really exist in the player...), and loadMovieNum is for loading on levels not layers...

To clear the above...

Assuming all movies have been fully loaded on their own level, you can control the timeline of one movie loaded on level 2 (from a button in a movie loaded on level 3, for example...), by targeting the level on which the movie is loaded...

From a button in a level 3 loaded movie...

on(release){
_level2.gotoAndStop(10); // for example...
}

Regards. Web Hosting - Web Design
01/07/07 -> OLDNEWBIE VS JOSHUA MUSSLEWHITE
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top