PDA

View Full Version : useHandCursor()?


colfaxrev
07-22-2008, 11:01 PM
i have this simple code

p_innerObj.addEventListener(MouseEvent.MOUSE_UP, p_onMouseUp);


works great function is called and everything... but... HOW do i get the hand cursor to show up on this?

i looked it up and found this..

flash.display.SimpleButton.useHandCursor

does this mean i HAVE to create a SimpleButton to use the hand cursor?

thanks in advance!

SergeantFlash
07-22-2008, 11:13 PM
To make the hand cursor appear, all you have to do it type:
p_innerObj.buttonMode = true;

colfaxrev
07-23-2008, 02:15 AM
thanks! awesome. super simple too!