Answered
Some actionscript missing
stop ();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
tellTarget("_root") {
gotoAndPlay(15);
}
}
I need to to continue to play the commands in the same way ie the animation to work when you roll your cursor over it but aso when it is clicked for it to go to url
Many thanks