Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Mouse not centered

Explorer ,
Jul 27, 2020 Jul 27, 2020
Hello,

Below is my code to move a clip called myCLip
this.monClip.addEventListener ("pressmove", fct.bind (this));
function fct (evt) {
var p = this.globalToLocal (evt.stageX, evt.stageY);
this.monClip.x = p.x;
this.monClip.y = p.y;
}

How can I prevent the mouse cursor from being positioned at the center of the myClip object?
Thank you for your reply.
TOPICS
Code
168
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 28, 2020 Jul 28, 2020
LATEST

if you're asking how to set your cursor to none, use:

 

canvas.style.cursor = "none";

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines