[AS]on (release) {
this.onEnterFrame = function() {
current = 7;
if (current<12) {
gotoAndPlay(current);
current += 1;
} else {
delete this.onEnterFrame;
gotoAndPlay(1);
}
};
}[/AS]This script is put on a button on the 7th frame, is supposed to play the movie till the frame 12 and then go and play the movie from frame 1. **Or is it? ** :h: It’s not working… Any help?