Advertisement
Guest User

Untitled

a guest
Jan 24th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.63 KB | None | 0 0
  1. <!-- Level then Layer then Tier (lowest to highest prescendence -->
  2. <GuiXml>
  3.     <Controls>
  4.         <TopLevelControl name="WayPointButton" virtual="true" clampedToScreen="false" mouseEnabled="true" movable="false" hidden="false" layer="2" level="0" tier="0" allowBringToTop="true" alpha="1" >
  5.             <Dimensions x="300" y="70" />
  6.             <OnMouseEnter>
  7.                 TweakIt.HighlightRow(self, false)
  8.             </OnMouseEnter>
  9.             <OnMouseExit>
  10.                 TweakIt.HighlightRow(self, true)
  11.             </OnMouseExit>
  12.             <OnMouseDown>
  13.                 TweakIt.SetWaypoint(self)
  14.             </OnMouseDown>
  15.            
  16.             <Controls>
  17.                 <Backdrop name="$(parent)BG" inherits="ZO_DefaultBackdrop"  hidden="false" alpha="1" layer="2" level="0" tier="0" >
  18.                     <AnchorFill />
  19.                 </Backdrop>
  20.                 <Texture name="$(parent)Highlight" textureFile="EsoUI/Art/Miscellaneous/listItem_highlight.dds" alpha="0"  layer="2" level="2" tier="2">
  21.                     <AnchorFill />
  22.                     <TextureCoords left="0" right="1" top="0" bottom=".625" />
  23.                 </Texture>
  24.  
  25.                 <!--
  26.                <Button name="$(parent)Down" inherits="ZO_ScrollDownButton" layer="6" >
  27.                     <AnchorFill />
  28.                    <OnMouseEnter>
  29.                         HighlightControl(self, control)
  30.                        ZO_VerticalScrollbarBase_OnMouseEnter(self:GetParent())
  31.                    </OnMouseEnter>
  32.                    <OnMouseExit>
  33.                        ZO_VerticalScrollbarBase_OnMouseExit(self:GetParent())
  34.                    </OnMouseExit>
  35.                </Button>
  36.                 -->
  37.                 <Backdrop name="$(parent)TextureBG" inherits="ZO_DefaultBackdrop" alpha="1" layer="2" level="0" tier="0" >
  38.                     <Dimensions x="64" y="64" />
  39.                     <Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="0" offsetY="0"/>
  40.                 </Backdrop>
  41.                
  42.                 <Texture name="$(parent)Texture" resizeToFitFile="false" inhertis="CT_TEXTURE" hidden="false" alpha="1" layer="2" level="1" tier="1" >
  43.                     <Dimensions x="64" y="64" />
  44.                     <Anchor point="CENTER" relativeTo="$(parent)TextureBG" relativePoint="CENTER" offsetX="0" offsetY="0"/>
  45.                 </Texture>
  46.                
  47.                 <Label name="$(parent)Label" font="ZoFontAnnounceSmall" color="ffffff" wrapMode="ELLIPSIS" text="" verticalAlignment="CENTER" horizontalAlignment="LEFT" alpha="1" layer="2" level="0" tier="0" >
  48.                     <Dimensions x="300" y="70" />
  49.                     <Anchor point="TOPLEFT" relativeTo="$(parent)TextureBG" relativePoint="TOPRIGHT" offsetX="0" offsetY="0"/>
  50.                     <Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" offsetX="0" offsetY="0"/>
  51.                 </Label>
  52.             </Controls>
  53.         </TopLevelControl>
  54.     </Controls>
  55. </GuiXml>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement