View Single Post
04/10/14, 05:42 AM   #2
Sharp
 
Sharp's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 32
Code:
<TopLevelControl name="MyFirstAddon" mouseEnabled="true">
If you change the name here, you'll need to change it in the LUA because of this code here also in the XML

Code:
 <Label name="$(parent)Counter" font="ZoFontWindowTitle" color="CFDCBD" wrapMode="ELLIPSIS" verticalAlignment="CENTER" text="Counter: ">
$(parent)Counder means it will evaluate to MyFirstAddonCounter

And you have to change the LUA here:

Lua Code:
  1. MyFirstAddonCounter:SetText(string.format("Counter: %d", counter))

If you change it from MyFirstAddon, you'll need to replace all instances where it was. Once you change those, it should work.
  Reply With Quote