i have an external swf that is loaded into a blank movie clip and the external swf has a movie clip in it, when i load it without a preloader the clip works fine, but when i add the preloader the movie clips and button in the external swf no longer function. any help would be appreciated.
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._xscale = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
thats the preloader code im using in frame one.