Groups | Blog | Home
all groups > flash (macromedia) > july 2003 >

flash (macromedia) : Movie Clip as mask with handcursor = true


danivi
7/20/2003 11:47:54 PM
Hi all
I have a movieclip that is a mask for a layer. I want that movie clip to be draged. I want the cursor to be a hand when over the movieclip.
I tried this:

onClipEvent (mouseDown) {
startDrag("");
_root.mymovieclip.useHandCursor = true;
}

The drag is working perfect, but no handcursor

I also tryied to change the behavior of the movieclip to button, but as is it a mask, doesn't work

Any help
Thanks
Daniel
Caracas-Venezuela

Clint_Critchlow
7/21/2003 5:22:41 PM
You want to give the movie clip a button event to get the handcursor. This event can be blank.

onClipEvent (mouseDown) {
startDrag("");
//_root.mymovieclip.useHandCursor = true;
}
on (press) {//button event to get the hand cursor
}



AddThis Social Bookmark Button