Skip to content

Instantly share code, notes, and snippets.

@redaphid
Last active March 7, 2022 23:11
Show Gist options
  • Save redaphid/3d505d0532446b91b74a55ff74bcf31b to your computer and use it in GitHub Desktop.
Save redaphid/3d505d0532446b91b74a55ff74bcf31b to your computer and use it in GitHub Desktop.
Windows Pen eraser Autokey Miro
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SetTitleMatchMode 2
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#InstallKeybdHook
;Coding stuff
CapsLock::~
#IfWinActive Miro
*#F20::
Send p
Sleep 100
Send {RButton}
return
*#F19::
*#e::
Send e
return
*#F18::h
#IfWinActive Online Whiteboard
*#F20::
Send p
Sleep 100
Send {RButton}
return
*#F19::
*#e::
Send e
return
*#F18::h
; #IfWinActive
; *#F18::LWin
; *#F20::Esc
; *#F19::
; Send L
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment