Does anybody know how to make a button that when you rollover your mouse poi
nter doesn't become a hand but stays a pointer arrow?? or the one you have a
s default..
Hi,
change the property "useHandCursor" of your button
my_btn.useHandCursor = false;
Good Luck
Hemendra Singh Shaktawat
Mindfire Solutions
www.mindfiresolutions.com
Hey tnx it worked...
I still wanna explain what I did for those that want a detailed information.
.
I gave my button an instance name ex. button1
and then i put the string on my button
on (rollover){
button1.useHandCursor = false;
}
and that's it!
anyways tnx hemendra!