Copy Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
dpfbin2
Posts: 10
Joined: 30 Aug 2021, 23:16

Copy

20 Sep 2021, 02:48

I have this script:

Code: Select all

CoordMode, Tooltip
MouseGetPos, xpos, ypos 
Msgbox, %xpos%, %ypos%
Now what do I add to the above to copy "%xpos%, %ypos%" to the clipboard (so that after executing the above script, I can then press Ctrl+V to paste "%xpos%, %ypos%" wherever I like)?

Thanks
Rohwedder
Posts: 7630
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Copy  Topic is solved

20 Sep 2021, 03:10

Hallo,
try:

Code: Select all

CoordMode, Tooltip
MouseGetPos, xpos, ypos 
Msgbox, %xpos%, %ypos%
ClipBoard = %xpos%, %ypos%

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Anput, doodles333, jameswrightesq, sofista and 296 guests