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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

play two external swfs; first one plays while 2nd loads

Status
Not open for further replies.

gwu

MIS
Dec 18, 2002
239
US
lets say I load an external swf(external1.swf) into a movie into a movie clip called "the_one". How does the main timeline know when external.swf has finished playing. Basically I need the main timeline to play the first swf (external1.swf) while the second swf is loading and then play the second when the first is finished even if the second is still loading.

Code:
_root.createEmptyMovieClip("the_one",1);
_root.the_one.loadMovie("external1.swf");

_root.createEmptyMovieClip("the_two",2);
_root.the_two.loadMovie("external2.swf");

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top