Does anyone see any problems with the code below:
[AS]
stop();
_global.homeTimeline = this;
var loaded = false;
section_mc.onEnterFrame = function() {
if (!homeTimeline.loaded && (this._url != _root._url)) {
if (this.getBytesLoaded() == this.getBytesTotal() ) {
homeTimeline.loaded = true;
homeTimeline.trans_mc.gotoAndPlay(“start”);
}
}
}
[/AS]
Basically I’m trying to figure out a problem with the onEnterFrame function. It works the first time around in my movie but when I come back to it a 2nd time it doesn’t function correctly.
Any ideas?
Foo