View Single Post
10/26/14, 08:41 AM   #1
zireko
 
zireko's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 63
I know this is a Simple XML transparent question but need some help.

All I'm trying to do is make this transparent when I delete it , it gives me a white box background.
I tried to look for the api for backdrops and couldn't find them in the main api list , also I tried looking it up in zgoo but I may just be looking in the wrong places.

inherits="ZO_ThinBackdrop"

here is my xml currently

Lua Code:
  1. <GuiXml>
  2.     <Controls>
  3.         <TopLevelControl name="QuestLurker" mouseEnabled="true" movable="true" hidden="false" resizeToFitDescendents="true">       
  4.                 <Controls>
  5.                 <Backdrop name="$(parent)BG" inherits="ZO_ThinBackdrop" excludeFromResizeToFitExtents="true">
  6.                     <AnchorFill />
  7.                 </Backdrop>
  8.                
  9.                 <Label name="$(parent)Quest" font="ZoFontWindowTitle" color="CFDCBD" wrapMode="ELLIPSIS" verticalAlignment="CENTER" horizontalAlignment="CENTER">
  10.                     <Anchor point="CENTER" realtiveTo="$(parent)" realtivePoint="CENTER" offsetX="0" offsetY="0" />
  11.                 </Label>
  12.             </Controls>
  13.         </TopLevelControl>
  14.     </Controls>
  15. </GuiXml>
  Reply With Quote