View Single Post
06/01/20, 04:49 PM   #7
Unleash101
Join Date: Jun 2020
Posts: 6
Originally Posted by sirinsidiator View Post
Do you have an xml file with a control which is also named "myAddon"? If so, it's overwriting your global table with the control.
Xml Code:
  1. <GuiXml>
  2. <Controls>
  3. <TopLevelControl name="myAddonActive" hidden="true" alpha="0.0">
  4.     <Dimensions x="200" y="25" />
  5.     <Anchor point="BOTTOM" relativeTo="GuiRoot" relativePoint="CENTER" offsetY="-20" />
  6.         <Controls>
  7.         <Label name="$(parent)Label" width="200" height="25" font="ZoFontWinH1" color="FFFFFF"
  8.        wrapMode="TRUNCATE" verticalAlignment="TOP" horizontalAlignment="CENTER"
  9.        text="myAddon is active!">
  10.     <Anchor point="TOP" relativeTo="$(parent)" relativePoint="TOP" />
  11. </Label>
  12. </Controls>
  13. </TopLevelControl>
  14. </Controls>
  15. </GuiXml>

Here is my XML GUI
  Reply With Quote