copy text without Ctrl+c e When I Go to Specific Website and Press a shortcut key

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
dragonsmile
Posts: 1
Joined: 30 Sep 2022, 01:45

copy text without Ctrl+c e When I Go to Specific Website and Press a shortcut key

Post by dragonsmile » 30 Sep 2022, 01:49

I Want to copy text without Ctrl+c For Example When I Go to Specific Website and Press a shortcut key text shoud be copy

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

Re: I Want to copy text without Ctrl+c For Example When I Go to Specific Website and Press a shortcut key text shoud be

Post by Rohwedder » 30 Sep 2022, 02:12

Hallo,
try:

Code: Select all

F2::
Send, ^a^c
Sleep, 100
Click
ClipBoard = %ClipBoard%
MsgBox,% ClipBoard
Return

Post Reply

Return to “Ask for Help (v1)”