hi again,
thanks to you guys i was able to make a really professional button (see code below). just one more thing: how do i specify the hit area and the down-state (like in the buttons). my button is a word and sofar it is just a button when you point right over a letter…
thanks for your help (-:
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
_root.gotoAndPlay(3);
}