I’m trying to create an interactive mouse that mimics the hand cursor you see in pdf files and other programs. There’s two movieclips I want to use for the cursor. The open hand and the grab. I can get the cursor to work on the open hand, but can’t get it to work when I press and want the open hand to change to the grab cursor. Here’s my code:
onClipEvent (load) {
Mouse.hide();
startDrag(this, true);
}
onClipEvent (mouseMove){
updateafterEvent();
}
onPress = function(){
openhand._visible = false;
grab._visible = true;
}
onRelease = function(){
openhand._visible = true;
grab._visible = false;
}
Any help would be greatly appreciated!! :hobbes: