Kodi Community Forum

Full Version: Need help creating autohotkey script for vrc-1100
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What I am wanting to do is press the green start button on vrc-1100 remote, and start kodi.

But once in kodi, I want to press the green start button to bring up the video addon window.

Any idea on how I would do this using autohotkey ?
I don't know how to map the same key press to two different commands, but I created an AutoHotKey script that starts Kodi with the "Start" command:

https://forum.kodi.tv/showthread.php?tid...pid1949380
Solved it!
Quote: ;Win-Alt-Enter is the shortcut for greenbutton on the Remote for Windows
; can't get sleep remapped

$#!Enter::
IfWinNotExist, Kodi
Run "C:\Program Files\Kodi\kodi.exe"
Else
{
IfWinNotActive
WinActivate
Else

Send ^+{v}
Return
}
Return

SLEEP::msgbox hello ;

Volume_Up:: Send {PgUp}
Volume_Down:: Send {PgDn}
PgUp:: Send {F10}
PgDn:: Send {F9}
Thread marked solved.