I want to create shortcuts for decreasing font size in Microsoft OneNote.
Font size can be decreased manually by performing the following actions:
press "alt" + type "r" + type "te" + hit "down arrow" + hit "up arrow" + hit "enter"
So I tried to translate this to the following code:
Code: Select all
#ifWinActive ahk_exe OneNote.exe
^+>::Send, !rte {Down} {Up} {Enter}
The first part works: up until
Code: Select all
!rte
In case you didn't notice: I'm a complete newbie to AutoHotKey and to coding in general.
Any help would be appreciated!