tip : hotkey to automate link into notes (using Autohotkey)

Ken F Hill
Ken F Hill Member Posts: 524 ✭✭✭
edited December 21 in English Forum

In the Feedback forum I have a request to automate link creation in notes. (Please vote if you agree.)

I have created some Autohotkey code as a work-around.

I first get a link using Ctrl+Alt+C. Then in my notes I create some text > select the new text > and press Ctrl+Shift+K. The script opens Logos' hyperlink box, sends the clipboard content, and sends the Enter key. I find it handy.

; ctrl shift K for use in Logos notes
^+k::
Send, ^k
SendInput, {Raw}%Clipboard%
SendInput, {Enter}
return

====

I can post an AHK file or an EXE file if anyone is interested.