hi.
i have this code on an empty movieclip that loads the external swf.
onClipEvent (enterFrame) {
if (!loaded && this._url != _root._url) {
if (this.getBytesLoaded() == this.getBytesTotal()) {
loaded = true;
gotoAndStop(39);
}
}
}
frame 38 has the empty movieclip hidden by another movieclip saying loading.
frame 39 is where the loading movieclip disapeers.
but its not working.
any help would be breat
thanks.