WoW:API SetConsoleKey: Difference between revisions
mNo edit summary |
(Cleaned up and added explanation of "-console" startup argument.) |
||
| Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} __NOTOC__ | ||
Sets the key used to open the console overlay for the current session. Upon restarting the game, the console key will return to the default "`" (tilde) key. | |||
''Note that the console is only accessible when WoW is started with the "-console" parameter, and that this function does nothing if the parameter wasn't used.'' | |||
SetConsoleKey("key") | |||
== Parameters == | |||
=== Arguments === | |||
:("key") | |||
:;key : String - The character to bind to opening the console overlay. When set to ''nil'', the console binding gets removed. | |||
''' | |||
== Details == | |||
Unlike the analogous [[API SetBinding|SetBinding()]] function, you can ''only'' provide the values of keys that represent standard ASCII characters--no modifiers are allowed. For instance, <tt>SetConsoleKey("CTRL-F")</tt> won't work, but <tt>SetConsoleKey("F")</tt> will. In addition, non-alphabetic keys that require modifiers to access, such as <tt>"!"</tt> using <Shift+1>, cannot be used. | |||
It should be noted that the console key is a very special keybinding in WoW; whenever the bound key is pressed, ''regardless'' of context or mode, the console window will appear (or disappear, if it's already visible). This means that setting the console key to <tt>"F"</tt> will ''prevent you from ever generating the <tt>"F"</tt> character again'', even if it's in a chat window or within the console itself. | |||
Using [[API SaveBindings|SaveBindings()]] does not permanently save this particular binding to disk. | |||
Revision as of 00:03, 17 May 2008
← WoW API < SetConsoleKey
Sets the key used to open the console overlay for the current session. Upon restarting the game, the console key will return to the default "`" (tilde) key.
Note that the console is only accessible when WoW is started with the "-console" parameter, and that this function does nothing if the parameter wasn't used.
SetConsoleKey("key")
Parameters
Arguments
- ("key")
- key
- String - The character to bind to opening the console overlay. When set to nil, the console binding gets removed.
Details
Unlike the analogous SetBinding() function, you can only provide the values of keys that represent standard ASCII characters--no modifiers are allowed. For instance, SetConsoleKey("CTRL-F") won't work, but SetConsoleKey("F") will. In addition, non-alphabetic keys that require modifiers to access, such as "!" using <Shift+1>, cannot be used.
It should be noted that the console key is a very special keybinding in WoW; whenever the bound key is pressed, regardless of context or mode, the console window will appear (or disappear, if it's already visible). This means that setting the console key to "F" will prevent you from ever generating the "F" character again, even if it's in a chat window or within the console itself.
Using SaveBindings() does not permanently save this particular binding to disk.