Share Posted November 25, 2013 I change scale and rotation property only using my custom slider. I disable line around object and scale handles using properties manager.lineThickness = 0; manager.handleSize = 0; I have two questions: 1) I move(drag) an image I want to use default flash hand cursor. How to do that? 2) Is there a way how to disable rotation handles? I know that exists two methods customizeMoveCursor and customizeRotationCursor, but how to pass hand cursor and disable rotation cursor using these methods I don't know. Loading... Link to post Share on other sites
Share Posted November 25, 2013 Sure, you can just use an empty shape for the custom cursor and tell it not to turn off the standard mouse cursor: var blankShape:Shape = new Shape(); TransformManager.customizeMoveCursor(blankShape, false); TransformManager.customizeRotationCursor(blankShape, false); TransformManager.customizeScaleCursor(blankShape, false); Link to post Share on other sites