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, "thedmovie".
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, "thedmovie".