I have a button im my flash. And when ever the cursor rolls over it, it is supposed to go to some place else in my flash.
But it doesn't
Here is the code I used:
on(rollOver){
gotoAndStop("menu", 1);
}
Any responses would be appreciated.
Posted 13 November 2008 - 05:02 PM
on(rollOver){
gotoAndStop("menu", 1);
}
Posted 13 November 2008 - 05:09 PM
Quote
on(rollOver){
this._x += 20;
this._y -= this._height/2;
}
on(rollOver){
this.gotoAndStop(<FRAME_NAME_WITH_QUOTES_OR_FRAME_NUMBER>); // NOTE - the frame must be within the button, otherwise it won't work correctly
}
