Whel…
I want to be able to play the timeline back to frame 1 of the same scene, then have the following code executed:
[AS]_root.contents.loadMovie(“welcome.swf”)[/AS]
Im sure you AS gurus can conjure some crazy code to let this happen, all ways i have tried have failed, without me being able to see the problem. Maybe this simply cannot be done.
In the first frame:
[AS]
this.onEnterFrame = function() {
if (this.looped) {
this.gotoAndStop(this._currentframe-1);
if (_currentframe == 1) {
this.onEnterFrame = undefined;
this.contents.loadMovie(“welcome.swf”);