You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MoveCursor(100, 100);
Wait(100);
MoveCursor(200, 200);
CursorPosition($x, $y); // returns (100, 100) in N# and (200, 200) in N2
MoveCursor changes cursor position by calling _ctx.Window.SetMousePosition, but CursorPosition reads _ctx.InputContext.MousePosition, which is only updated once per frame.
The text was updated successfully, but these errors were encountered:
The following code behaves incorrectly in N#:
MoveCursor
changes cursor position by calling_ctx.Window.SetMousePosition
, butCursorPosition
reads_ctx.InputContext.MousePosition
, which is only updated once per frame.The text was updated successfully, but these errors were encountered: