Defining hotkeys
Moderators: Lavish Software Team, Moderators
Defining hotkeys
I'm switching over to IS from WinEQ and i'm having difficulty figuring out how to reassign window hotkeys. Currently, each session is defaulted to a 'Ctrl+Alt+#' hotkey and i'd like to change this to be 'Shift+#. Any help would be appreciated.
IS is not (currently) for the faint of heart when it comes to changing the default global hotkeys
The abridged version is this: They are defined in scripts\DefaultStartupSequence.iss, which gets re-patched if you modify it, and you can set up additional startup scripts to run after the default.
You can change it manually like so:
in the in-game console (run IS, open console with ` by default). Just change the "ctrl+alt+1" part to whatever combination of keys (ctrl, alt, shift, win are valid combo keys for global hotkeys), and is1_key to is#_key where # is the session. If you want the window title to change, since it would still say ctrl+alt+1, use the WindowText command, such as

You can change it manually like so:
Code: Select all
globalbind is1_key "ctrl+alt+1" "WindowVisibility foreground"
Code: Select all
WindowText "is1 (ctrl+alt+1)"