Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

prevent mouse pointer from changing onRollover

Status
Not open for further replies.

firegambler

Technical User
Sep 25, 2002
455
AT
Hi folks,

could anybody please tell me how i can prevent the mouse pointer-arrow from changing into the "hyperlink-hand" when rollOver a flashbutton?

thanks! regards

tektips.gif
 
havent tried this but i think it ought to work

myButton.useHandCursor = false;
 
Thanks, works great!

There's just one point which i have to admit that i forgot to mention before:
i'd like to make my film compatible to the flash 5-plugin.

Since flash 5 doesn't support giving instances of buttons names i assume that there might be another solution too. Do you probably know how this can be done?

and... could i do this for all buttons in a film with one command without putting the script on every button?
Something of an fs-command-style-thing which would affect the whole film...

(sounds like a newbie question... "can i do everything with one command?" ;-) ... anyway... is it possible? :)) regards

tektips.gif
 
dont know about doing it for them all

but for 5 i think you would have to create a custom cursor of the arrow and hide the mouse.

onClipEvent(load){
Mouse.hide()
startDrag(this, true)
}

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top