cursor show and hide issue

Specific Q&A about the new Flash export
Locked
User avatar
jaymzeberly
Posts: 19
Joined: Wed Nov 01, 2006 9:16 pm
Location: lost angeles

The player I have has a pano and then below it in the flash proect is buttons to control the pano (up,down,left,rg,zoom in/out)

What I need: the user rolls over movie and the normal arrow cursor turns into a hand open, when clicking to drag, the hand closes, and then when rolls out of the window the arrow comes back. my movie name is vr. I am not sure if there is a way to on roll off of the qtvr2pano movie show.mouse and hide cursor... here are my codes.


onClipEvent (mouseDown) {
Mouse.hide();
startDrag ("", true);
_root.mc_cursor._visible = 1;

}

onClipEvent (mouseUp) {
_root.mc_cursor._visible = 1;
}

on roll over buttons:
Mouse.show();
_root.mc_cursor._visible = 0;
}

on roll out of buttons:
on (release, releaseOutside, rollOut, dragOut) {
mouse.hide();
_root.mc_cursor._visible = 1;
}
Locked