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

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
== Syntax ==
 
== Syntax ==
 +
{{CMD-DR|HUDSet|Intermediate|Beginner|Beginner|Intermediate}}
 +
HUDSet <name|*> [-s <size>] [-c <color>] [-f <filter>] [-l #,#] [-t <text>]
  
== Description ==
+
== Forms ==
 +
*HUDSet <name|*> -s <size> - changes HUD element <name> (or * for all) font size to <size>
 +
*HUDSet <name|*> -c <color> - changes HUD element <name> (or * for all)  color to <color>. <color> is hex format i.e. FFFFFFFF
 +
*HUDSet <name> -l <#,#> - moves HUD element <name> to X,Y location specified
 +
*HUDSet <name> -t <text> - changes <name>'s text to <text>
  
 
== Examples ==
 
== Examples ==
 +
===Change a HUD element===
 +
*HUDSet element1 -s 15 -c FF0000FF -l 250,250 -t "I am a size 15 blue element at 250,250"
 +
===Change all HUD elements size and color===
 +
*HUDSet * -s 15 -c FF00FF00
  
 
== See Also ==
 
== See Also ==
 +
*[[ISSession:HUD (Command)|HUD (Command)]]
 +
*[[ISSession:HUDGroup (Command)|HUDGroup (Command)]]
 +
*[[LavishGUI#Commands|LavishGUI Commands]]
 
*[[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}}
 +
[[Category:Inner Space]]
 +
[[Category:Inner Space Kernel]]
 +
[[Category:Inner Space Kernel Commands]]

Latest revision as of 04:31, 19 October 2005

Syntax

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

HUDSet <name|*> [-s <size>] [-c <color>] [-f <filter>] [-l #,#] [-t <text>]

Forms

  • HUDSet <name|*> -s <size> - changes HUD element <name> (or * for all) font size to <size>
  • HUDSet <name|*> -c <color> - changes HUD element <name> (or * for all) color to <color>. <color> is hex format i.e. FFFFFFFF
  • HUDSet <name> -l <#,#> - moves HUD element <name> to X,Y location specified
  • HUDSet <name> -t <text> - changes <name>'s text to <text>

Examples

Change a HUD element

  • HUDSet element1 -s 15 -c FF0000FF -l 250,250 -t "I am a size 15 blue element at 250,250"

Change all HUD elements size and color

  • HUDSet * -s 15 -c FF00FF00

See Also