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

From Lavish Software Wiki
Jump to navigation Jump to search
Line 16: Line 16:
  
 
== See Also ==
 
== See Also ==
 +
*[[ISSession:HUD (Command)|HUD (Command)]]
 +
*[[ISSession:HUDGroup (Command)|HUDGroup (Command)]]
 +
*[[LavishGUI#Commands|LavishGUI Commands]]
 +
*[[IS:Session#Commands|Inner Space Session Commands]]
 
*[[LavishScript:Commands|LavishScript Commands]]
 
*[[LavishScript:Commands|LavishScript Commands]]
*[[IS:Session#Commands|Inner Space Session Commands]]
+
 
  
 
{{Command-Stub}}
 
{{Command-Stub}}

Revision as of 20:47, 16 September 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