Hello all:
I have a movie clip that is launching external SWF clips into an empty container called “loader”
on (release) {
_parent.loader.loadMovie(“debarker.swf”,“loader”);
_parent.sound.loadMovie(“sounds/products/prod1_en.swf”,“sound”);
}
If I add a pre-loader scene with a percentage bar, the buttons no longer load the clips. All I have to do to make things work again is to remove the preloader scene. Ideas?
The preloader uses the following code, and the second scene is labelled “main”
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
gotoAndPlay(“main”);
}
Please help …