How can I make my Custom UI default?
As it is, here is my code:
Code
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Desc>
<Frame type="CommandPanel" name="GameUI/UIContainer/ConsoleUIContainer/CommandPanel" file="GameUI">
<BatchImages val="true"/>
<BatchText val="true"/>
<Anchor side="Bottom" relative="$parent" pos="Max" offset="0"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="-600"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="600"/>
<Width val="385"/>
<Height val="130"/>
<Frame type="CommandTooltip" name="CommandTooltip">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-130"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="220"/>
</Frame>
<Frame type="CommandButton" name="CommandButton00" template="CommandButton/CommandButtonTemplate">
<Anchor side="Top" relative="$parent" pos="Min" offset="30"/>
<Anchor side="Left" relative="$parent" pos="Min" offset="#CommandButtonGap"/>
</Frame>
<Frame type="CommandButton" name="CommandButton05" template="CommandButton/CommandButtonTemplate">
<Visible val='False'/>
<Anchor side="Top" relative="$parent/CommandButton00" pos="Min" offset="0"/>
<Anchor side="Left" relative="$parent/CommandButton00" pos="Max" offset="#CommandButtonGap"/>
</Frame>
<Frame type="CommandButton" name="CommandButton10" template="CommandButton/CommandButtonTemplate">
<Visible val='False'/>
<Anchor side="Top" relative="$parent/CommandButton05" pos="Min" offset="0"/>
<Anchor side="Left" relative="$parent/CommandButton05" pos="Max" offset="#CommandButtonGap"/>
</Frame>
</Frame>
<Frame type="Frame" name="GameUI/UIContainer/ConsoleUIContainer/MenuBarConsoleAnchor">
<Anchor side="Top" relative="$this" pos="Min" offset="0"/>
<Anchor side="Left" relative="$this" pos="Min" offset="0"/>
<Anchor side="Bottom" relative="$parent/$parent/$parent" pos="Max" offset="-600"/>
<Anchor side="Right" relative="$parent/$parent/$parent" pos="Max" offset="-50"/>
</Frame>
<Frame type="ChatBar" name="GameUI/UIContainer/ConsoleUIContainer/ChatBar" template="ChatBar/ChatBarTemplate">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-280"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="0"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="0"/>
</Frame>
<Frame type="MessageDisplay" name="GameUI/UIContainer/ConsoleUIContainer/ChatDisplay" template="StandardTemplates/StandardMessageDisplayTemplate">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-380"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="0"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="0"/>
<Width val="720"/>
<Height val="300"/>
<Style val="ChatDisplay"/>
</Frame>
</Desc>
<Desc>
<Frame type="CommandPanel" name="GameUI/UIContainer/ConsoleUIContainer/CommandPanel" file="GameUI">
<BatchImages val="true"/>
<BatchText val="true"/>
<Anchor side="Bottom" relative="$parent" pos="Max" offset="0"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="-600"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="600"/>
<Width val="385"/>
<Height val="130"/>
<Frame type="CommandTooltip" name="CommandTooltip">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-130"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="220"/>
</Frame>
<Frame type="CommandButton" name="CommandButton00" template="CommandButton/CommandButtonTemplate">
<Anchor side="Top" relative="$parent" pos="Min" offset="30"/>
<Anchor side="Left" relative="$parent" pos="Min" offset="#CommandButtonGap"/>
</Frame>
<Frame type="CommandButton" name="CommandButton05" template="CommandButton/CommandButtonTemplate">
<Visible val='False'/>
<Anchor side="Top" relative="$parent/CommandButton00" pos="Min" offset="0"/>
<Anchor side="Left" relative="$parent/CommandButton00" pos="Max" offset="#CommandButtonGap"/>
</Frame>
<Frame type="CommandButton" name="CommandButton10" template="CommandButton/CommandButtonTemplate">
<Visible val='False'/>
<Anchor side="Top" relative="$parent/CommandButton05" pos="Min" offset="0"/>
<Anchor side="Left" relative="$parent/CommandButton05" pos="Max" offset="#CommandButtonGap"/>
</Frame>
</Frame>
<Frame type="Frame" name="GameUI/UIContainer/ConsoleUIContainer/MenuBarConsoleAnchor">
<Anchor side="Top" relative="$this" pos="Min" offset="0"/>
<Anchor side="Left" relative="$this" pos="Min" offset="0"/>
<Anchor side="Bottom" relative="$parent/$parent/$parent" pos="Max" offset="-600"/>
<Anchor side="Right" relative="$parent/$parent/$parent" pos="Max" offset="-50"/>
</Frame>
<Frame type="ChatBar" name="GameUI/UIContainer/ConsoleUIContainer/ChatBar" template="ChatBar/ChatBarTemplate">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-280"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="0"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="0"/>
</Frame>
<Frame type="MessageDisplay" name="GameUI/UIContainer/ConsoleUIContainer/ChatDisplay" template="StandardTemplates/StandardMessageDisplayTemplate">
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-380"/>
<Anchor side="Left" relative="$parent" pos="Mid" offset="0"/>
<Anchor side="Right" relative="$parent" pos="Mid" offset="0"/>
<Width val="720"/>
<Height val="300"/>
<Style val="ChatDisplay"/>
</Frame>
</Desc>
It isn't really what I actually want, but it is a draft that I used to do some testings. And when I load the map, the GameUI is still the one used. How do I make mine the default one?
What I would actually like to have would be certain Command Card's buttons, the chat message box and the chat message-entry box. The HP and the Energy would also have to be displayed. All the rest is pretty much superfluous.
None.