PDA

View Full Version : Mouse rollover pointer


WISHBONEjg
09-02-2003, 02:10 PM
Hi, I have a button on my movie that has a rollover action. Now i do not want people to know that they have rolled over a button. So is there any way to not have that button pointer, you know the hand. Can it just be the regular pointer?

THANX FOR ANY HELP
John

toke
09-02-2003, 02:22 PM
make your button a movie clip :D

WISHBONEjg
09-02-2003, 02:36 PM
ok but now i can't give it the action i want (on rollover, go to and play frame 4)

any more help?

toke
09-02-2003, 02:54 PM
y not?

use
on(rollOver){
_parent.gotoAndStop(4); //since the button is inside the movie clip, you need to refer it to the main movie by using either _parent or _root.
}

should do it

webguy
09-02-2003, 03:07 PM
mc.useHandCursor=false;