Page 1 of 1

Overlap mouse on windows

Posted: 28 Nov 2022, 05:26
by hieveryone
Hi I'm kinder new , could you over lay cursor?
For example if I have to windows on, could one window read where the mouse position is on the main window?

Because I want multibox script NOT WOW MULTIBOX

Thanks you

Re: Overlap mouse on windows

Posted: 28 Nov 2022, 07:25
by mikeyww
Hello,

Code: Select all

F3::
CoordMode, Mouse
MouseGetPos, x, y
MsgBox, 64, Mouse position, (%x%, %y%)
Return

Re: Overlap mouse on windows

Posted: 28 Nov 2022, 22:06
by hieveryone
Thanks but I see many multibox script with Winget and some other stuff like control send are those nesccesary to build a multibox script?

Also about your script, I know most games read like mousemove
Will the mouse position be read by mousemove?

Re: Overlap mouse on windows

Posted: 29 Nov 2022, 06:42
by mikeyww
A specific goal determines what is necessary in a script.

Use MouseMove to move the mouse cursor. Use MouseGetPos to retrieve the position. By default, coordinates are relative to the active window. The links that I have cited here provide details & examples.