i have editorial.swf with a preloader coded:
onClipEvent (enterFrame) {
var bytes = _root.getBytesTotal();
var bytes_loaded = _root.getBytesLoaded();
if (bytes_loaded == bytes) {
_root.gotoAndPlay(5);
this.kirupatxt = “movie loaded”;
} else {
_root.gotoAndStop(1);
- bytes_loaded + “/” + bytes +"";
}
}
it has a button inside that calls 1.swf . 1.swf has also a preloader.
when i click to call 1.swf from the button it seems like it is loading but then suddenly it turns at the begining of editorial!