I’m sure it’s something simple but can’t think of it.
I’ve got a mc with the following script on the main timeline:
flame4.onRollOver=function(){
this.gotoAndPlay("over");
}
flame4.onRollOut = function(){
this.gotoAndPlay("up");
}
flame4.onPress = function(){
this.gotoAndPlay("press");
}
flame4.onRelease = function(){
this.gotoAndPlay("release");
}
The onRelease sends the playhead of the mc to the release label where another movieclip just keeps looping. How can i keep that looping? After i click on the mc and then rollout it of course just plays the rollout function. I’d like to keep the loop going on release.