I am a beginner with VisPy (and in many other aspects of PC programming :) )
In my app VisPy is used with PyQt and I can do something like:
cursor=QtGui.QCursor()
cursor.setPos(x,y)
but by doing this, as expected, the mouse pointer is moved to x, y coordinates of the monitor screen having the origin in the top left corner.
I know that you can get the mouse position in the central widget by using:
Is there a way to set the mouse position to a certain location in the central widget?
A sort of setPos() but for coordinates inside central widget of VIsPy?
I am trying to move the mouse pointer programmatically to a certain position within central widget.
Thank you!