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

Mouse not centered

Explorer ,
Jul 27, 2020 Jul 27, 2020

Copy link to clipboard

Copied

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

Views

124

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

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

 

canvas.style.cursor = "none";

Votes

Translate

Translate

Report

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