View Single Post
04/15/14, 01:46 PM   #10
zireko
 
zireko's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 63
This is my xml and lua. I will show a few images of what I'm getting.

XML
Lua Code:
  1. <GuiXml>
  2.     <Controls>
  3.         <TopLevelControl name="QuestMaster" mouseEnabled="true" movable="true">
  4.             <Dimensions x="300" y="400" />
  5.             <Anchor point="CENTER" />        
  6.  
  7.             <OnMouseDown>
  8.                 QuestMasterReset()
  9.             </OnMouseDown>
  10.  
  11.             <Controls>
  12.                 <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" />
  13.                 <Label name="$(parent)quest1" font="ZoFontAnnounceSmall" color="CFDCBD" wrapMode="ELLIPSIS" verticalAlignment="CENTER" text="A Pinch of Sugar">
  14.                     <AnchorFill />
  15.                 </Label>
  16.                 <Label name="$(parent)quest2" font="ZoFontWindowSmall" color="CFDCBD" wrapMode="ELLIPSIS" verticalAlignment="CENTER" text="Cast Adrift">
  17.                     <AnchorFill />
  18.                 </Label>
  19.             </Controls>
  20.         </TopLevelControl>
  21.     </Controls>
  22. </GuiXml>

LUA
Lua Code:
  1. QuestMasterquest1:SetColor(128, 128, 128, 1)
Attached Thumbnails
Click image for larger version

Name:	e1.jpg
Views:	481
Size:	455.2 KB
ID:	141  Click image for larger version

Name:	e2.jpg
Views:	500
Size:	403.2 KB
ID:	142  
  Reply With Quote