This is the code I used. Using ActionScript 2 btw.
on(rollOver){
gotoAndStop (2);
}
on(release){
gotoAndStop (3);
}
on(release){
gotoAndStop (1);
}
on(rollOver){
gotoAndStop (2);
}
on(release){
gotoAndStop (3);
}
on(release){
gotoAndStop (1);
}
Quote from LagWhy are there 3 such events. you can do with just one goto. Also have you bound the AS to the button? Just use go to and play to 3rd frame on release.
Quote from Lag???, if I'm not wrong, that's AS 3. He needs AS 2.0.
Quote from ???No, that's AS2. I only program in AS2, and I use that for all of my buttons.
on (rollOut){
gotoAndStop (1);
}
on (release){
gotoAndStop (3);
}