View Single Post
07/23/14, 02:19 PM   #7
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
How your xml looks like? It should be something like this:

xml Code:
  1. <GuiXml>
  2.     <Controls>
  3.         <Control name="EventExplorerRow" virtual="true">
  4.             <Dimensions y="45"/>
  5.             <Controls>
  6.                 <Label name="$(parent)Id" font="ZoFontGame" horizontalAlignment="RIGHT">
  7.                     <Anchor point="RIGHT" relativePoint="LEFT" offsetX="50"/>
  8.                 </Label>
  9.                 <Label name="$(parent)Name" font="ZoFontGame">
  10.                     <Anchor point="LEFT" relativeTo="$(parent)Id" relativePoint="RIGHT" offsetX="20"/>
  11.                 </Label>
  12.             </Controls>
  13.         </Control>
  14.         <TopLevelControl name="EventExplorerWindow" mouseEnabled="true" movable="true" clampedToScreen="true" hidden="true">
  15.             <Dimensions x="760" y="650" />
  16.             <Anchor point="CENTER" />
  17.             <Controls>
  18.                 <Backdrop name="$(parent)BG" inherits="ZO_DefaultBackdrop" />
  19.             </Controls>
  20.         </TopLevelControl>
  21.     </Controls>
  22. </GuiXml>

There is no UI error with this .xml file.
  Reply With Quote