Mouse cursor

In my flash movie, I have an action when the mouse rolls over a movie clip, but the mouse cursor changes to a hand when it rolls over it. How do I get the cursor to stay an arrow when they rollover the clip?

myMovieClip.useHandCursor = false;

should do it :slight_smile:

Perfect… Thanks! :thumb:

Is there are way to set that globaly so it affects all my buttons at one time?

[AS]Button.prototype.useHandCursor = false;
//
MovieClip.prototype.useHandCursor = false;[/AS]
http://proto.layer51.com/d.aspx?f=596

I’m not exactly sure where to place this code…

Just paste it in the first frame actions…

In my _root, or in the actual movie clip?

Nevermind, I got it! Thanks for the quick response…

No problem. :wink: