Dear friends, please,
what is the best way for moving mouse cursor. In older Java I had:
but what is the best way in Java 11 please?
Thank you
p4ppc
what is the best way for moving mouse cursor. In older Java I had:
B4X:
Dim robot As JavaObject
robot.InitializeNewInstance("javafx.scene.robot.Robot", Null)
Dim Point2D As JavaObject
Point2D.InitializeStatic("javafx.scene.input.mouseMove")
robot.RunMethod("mouseMove", Array As Object(x, y))
but what is the best way in Java 11 please?
Thank you
p4ppc