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 comment Share on other sites More sharing options...
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 comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now