Rollover without hand icon?

Hey,

Anyone know how to create a rollover without using a button so that the hand icon does not appear. I need a rollover on a certain area of the screen but I want the pointer to stay as an arrow.

I think using ‘if (_ymouse<450)’ would work if i wanted the rollover to occur from 450 downwards on the screen but what if the area is a strip between 450 and 500?

Help would be much appreciated.
d

buttonName.useHandCursor = false

Cheers that works

D

also note the same can be applied to movieclips

MovieClipName.useHandCursor = false;

as well as their prototypes (meaning ALL buttons or movieclips will have no hand cursor)

Button.prototype.useHandCursor = false;
MovieClip.prototype.useHandCursor = false;

he didn’t ask that now did he sen!?

You gotta show me up don’t you!?!
:scream: :scream: :scream: :scream:

:stuck_out_tongue:
:trout:
:stuck_out_tongue:

sen you put “MovieClip.prototype.useHandCursor = false;” in there … I don’t understand why an mc would use the handcursor anyway. unless by putting that it doesn’t use the handcursor throughout the entire movie

i’m confused(-:

because MCs can have button commands in FMX

I was just amending to an exellent reply!

:stuck_out_tongue:

Jubba

sorry totally off topic, but does your footer change with every post or is it just me?? :-\

'tis indeed random

Yeah its random. :slight_smile:

so iam not going crazy !! :stunned:

that would explain it =)

Hello,
For some reason . I can’t get this to work.
I have a rollover movie clip inside another movie that I don’t want the mouse pointer to show.
Does this code go on the movie clip itself or on it’s own layer?
I tried both, but didn’t work.

MovieClipName.useHandCursor = false;

Apply your code on the timeline of the movieclip you dont want the hand cursor to appear.