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

loading a movie clip with preloader into empty clip

Status
Not open for further replies.

mancroft

Programmer
Oct 26, 2002
267
GB
OK, stoopid question for those who know the answer:

I am trying to load a movie contac.swf into an empty movie clip "thedmovie" thus:

loadMovie (" "thedmovie");

The problem is that the movie contac.swf contains a preloader:

frame 1:
_root.firstloading.percent = int ((this.getbytesloaded() / this.getbytestotal()) * 100);

frame 2:
if (_root.firstloading.percent < 100) {
gotoAndPlay (1);
} else {
gotoAndPlay (5);
}


and I can't work out how to get contac.swf to display in the empty movie clip, &quot;thedmovie&quot;.
 
Just answered you on FK.

Regards,

cubalibre2.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top