Difference between revisions of "LavishGUI:UI (Command)"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Syntax ==
 
== Syntax ==
 
{{CMD-DR|UI|Newbie|Newbie|Newbie|Newbie}}
 
{{CMD-DR|UI|Newbie|Newbie|Newbie|Newbie}}
UI -reset|-load <filename>
+
UI -reset|-load <filename>|-reload <filename>
  
 
== Description ==
 
== Description ==
 +
* -reset
 +
: Clears all UI elements.  This includes the console, so have a plan for entering commands if necessary.
 +
* -load <filename>
 +
: Loads an XML interface file.  This is ''cumulative'' and will simply add the new elements to the current interface.  Any top-level elements in the file that already exist in the current UI will be skipped
 +
* -reload <filename>
 +
: Same as -load, but will not skip existing elements (it will replace them)
 +
 +
<small>Tip: The UIElement command can be used to remove specific UI elements</small>
  
 
== Examples ==
 
== Examples ==
 +
* ui -reset
 +
* ui -load defaultui
 +
* ui -load myui
 +
* ui -reload myui
  
 
== See Also ==
 
== See Also ==
 +
*[[ISSession:UIElement (Command)]]
 
*[[LavishScript:Commands|LavishScript Commands]]
 
*[[LavishScript:Commands|LavishScript Commands]]
 
*[[IS:Session#Commands|Inner Space Session Commands]]
 
*[[IS:Session#Commands|Inner Space Session Commands]]

Revision as of 00:20, 27 May 2005

Syntax

Command Difficulty Rating
UI
Usage Newbie
Level of Understanding Newbie
Computer Savvy Newbie
Logic Newbie

UI -reset|-load <filename>|-reload <filename>

Description

  • -reset
Clears all UI elements. This includes the console, so have a plan for entering commands if necessary.
  • -load <filename>
Loads an XML interface file. This is cumulative and will simply add the new elements to the current interface. Any top-level elements in the file that already exist in the current UI will be skipped
  • -reload <filename>
Same as -load, but will not skip existing elements (it will replace them)

Tip: The UIElement command can be used to remove specific UI elements

Examples

  • ui -reset
  • ui -load defaultui
  • ui -load myui
  • ui -reload myui

See Also