7/2/2010 10:43:43 AM
Title:
How to use movieclip with link cursor
I have a dragable movieclip , the problem is that ,if I make it button then startDrag don't work , But I need link cursor on it . thanks
7/2/2010 10:49:16 AM
for actionscript 3.0 in flash cs use the properties buttonMode and useHandCursor to make a movieclip behave like a button. this will make the hand cursor appear.
btnSlider.buttonMode = true;
btnSlider.useHandCursor = true;