Difference between revisions of "ISKernel:GlobalBind (Command)"

From Lavish Software Wiki
Jump to navigation Jump to search
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
== Syntax ==
 
== Syntax ==
 
{{CMD-DR|GlobalBind|Intermediate|Beginner|Beginner|Beginner}}
 
{{CMD-DR|GlobalBind|Intermediate|Beginner|Beginner|Beginner}}
 +
GlobalBind -list|-clear|-delete <name>|<name> <combo> <command>
  
== Description ==
+
== Forms ==
 +
*Global Binds are just like [[ISSession:Bind (Command)|Bind]] except they create windows hotkeys usable from anywhere to send commands to your InnerSpace Session
 +
*GlobalBind -list - lists all your registered global hotkeys
 +
*GlobalBind -clear - clears all your global hotkeys
 +
*GlobalBind -delete <name> - deletes a global hotkey
 +
*GlobalBind <name> <combo> <command> - creates a global hotkey of <name> using <combo> keys to execute <command>
  
 
== Examples ==
 
== Examples ==
 +
===List your global hotkeys===
 +
*GlobalBind -list
 +
;Output
 +
Inner Space registered global hotkeys:
 +
-----------------------------
 +
[is1_key] [Ctrl+Alt+1] Command: WindowVisibility foreground
 +
===Clear all global hotkeys===
 +
*GlobalBind -clear
 +
===Delete a global hotkey===
 +
*GlobalBind -delete is1_key
 +
;Output
 +
Global Bind 'is1_key' removed
 +
===Create a global hotkey===
 +
GlobalBind is1_key Ctrl+Alt+1 "WindowVisibility foreground"
 +
;Output
 +
[is1_key] [Ctrl+Alt+1] Command: WindowVisibility foreground
  
 
== See Also ==
 
== See Also ==
 
*[[LavishScript:Commands|LavishScript Commands]]
 
*[[LavishScript:Commands|LavishScript Commands]]
 +
*[[IS:Kernel#Commands|Kernel Commands]]
 
*[[IS:Session#Commands|Inner Space Session Commands]]
 
*[[IS:Session#Commands|Inner Space Session Commands]]
  
 
{{Command-Stub}}
 
{{Command-Stub}}
 +
[[Category:Inner Space]]
 +
[[Category:Inner Space Kernel]]
 +
[[Category:Inner Space Kernel Commands]]

Latest revision as of 04:52, 19 October 2005

Syntax

Command Difficulty Rating
GlobalBind
Usage Intermediate
Level of Understanding Beginner
Computer Savvy Beginner
Logic Beginner

GlobalBind -list|-clear|-delete <name>|<name> <combo> <command>

Forms

  • Global Binds are just like Bind except they create windows hotkeys usable from anywhere to send commands to your InnerSpace Session
  • GlobalBind -list - lists all your registered global hotkeys
  • GlobalBind -clear - clears all your global hotkeys
  • GlobalBind -delete <name> - deletes a global hotkey
  • GlobalBind <name> <combo> <command> - creates a global hotkey of <name> using <combo> keys to execute <command>

Examples

List your global hotkeys

  • GlobalBind -list
Output
Inner Space registered global hotkeys:
-----------------------------
[is1_key] [Ctrl+Alt+1] Command: WindowVisibility foreground

Clear all global hotkeys

  • GlobalBind -clear

Delete a global hotkey

  • GlobalBind -delete is1_key
Output
Global Bind 'is1_key' removed

Create a global hotkey

GlobalBind is1_key Ctrl+Alt+1 "WindowVisibility foreground"

Output
[is1_key] [Ctrl+Alt+1] Command: WindowVisibility foreground

See Also