Made custom cursor
stage.addChild(movieClip_1); movieClip_1.mouseEnabled = false; movieClip_1.addEventListener(Event.ENTER_FRAME, fl_CustomMouseCursor); function fl_CustomMouseCursor(event:Event) { movieClip_1.x = stage.mouseX; movieClip_1.y = stage.mouseY; } Mouse.hide();
But the movement is jerky, as well as the image is not smoothed. How to enable anti-aliasing (or globally in the project, or specifically for the cursor, for example, this code)