Is there a way to copy link text to the clipboard with autohotkey. In my situation I would like to capture the link text using Control-LeftClick, I then manipulate the text and construct a new link and navigate. Currently I am doing:
browser="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
Send, ^c
Sleep 200
Run, %browser% mySite.com/?s=%Clipboard%& ...
Return
However rather than using Send, ^c to copy the text when I select it, it would be much nicer if I could just get the text by using control-LeftClick on the link, selecting the link text without accidentally clicking it can be clumsy.
Any ideas?