This should be easy but I can never seem to get it to work. I want to be able to highlight text on a web page, copy it and automatically copy it to a new tab in Notetab light. I've taken a stab at it but I'm new to Autohotkey and can't get it to work.
This is what I tried:
;automatically send selected text to notetab in new tab
^#c::
SendInput, ^c
run c:\program files\notetab light\notetab.exe
winactivate, NoteTab Light
sendinput, ^n
sendinput, ^v
return
Can anyone help me with this script? I know its simple, but I can't get it to work consistently.
Thanks