QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: Qbee on January 03, 2020, 05:49:36 am

Title: _SCREENPRINT for Mouse ?
Post by: Qbee on January 03, 2020, 05:49:36 am
Hello,

in the wiki I found some codes with which text can be entered in an external program, i. e. notepad, using _SCREENPRINT.

Moving the mouse in the local program works using _MOUSEMOVE.
What I try is
- to get the mouse position from outside the local program and
- to move the mouse in (and send mouse clicks to) an external program.

Is there a way to do that ?
Title: Re: _SCREENPRINT for Mouse ?
Post by: RhoSigma on January 03, 2020, 06:17:40 am
_SCREENCLICK (http://www.qb64.org/wiki/SCREENCLICK)
_MOUSEX (http://www.qb64.org/wiki/MOUSEX)
_MOUSEY (http://www.qb64.org/wiki/MOUSEY)
Title: Re: _SCREENPRINT for Mouse ?
Post by: Qbee on January 03, 2020, 06:49:35 am
Thank you, @RhoSigma . That will help.