View Single Post
05-28-09, 11:52 AM   #20
Samsan
An Aku'mai Servant
 
Samsan's Avatar
Join Date: May 2009
Posts: 33
thx...I'm still learning myself...not sure about many things still

In your code, the 6 background images are on the base frame from what I can tell, buut are set up strange to me...lol..and the rest of the stuff is placed on top as normal...give me a few and i'll look into it a bit further.

The image setup I use for a base frame is as follows and the rest of the stuff is layered on that. Although I have a base frame and layered frames on top of that...Hope this helps out...

Code:
      <Frame name="DWMBgTexture6" >
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="512" y="-256" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture6" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-BottomRight">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
      <Frame name="DWMBgTexture5">
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="256" y="-256" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture5" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-BottomMid">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
      <Frame name="DWMBgTexture4">
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="0" y="-256" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture4" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-BottomLeft">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
      <Frame name="DWMBgTexture3">
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="512" y="0" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture3" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-TopRight">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
      <Frame name="DWMBgTexture2">
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="256" y="0" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture2" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-TopMid">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
      <Frame name="DWMBgTexture1">
        <Size>
          <AbsDimension x="256" y="256" />
        </Size>
        <Anchors>
          <Anchor point="TOPLEFT">
            <Offset>
              <AbsDimension x="0" y="0" />
            </Offset>
          </Anchor>
        </Anchors>
        <Layers>
          <Layer>
            <Texture name="$parentTexture1" setAllPoints="true" file="interface\AddOns\DWMPack\Backs\DWM-Base-Bg-TopLeft">
              <TexCoords left="0" right="1" top="0" bottom="1" />
            </Texture>
          </Layer>
        </Layers>
      </Frame>
    </Frames>
__________________
To give is to receive so the more that you give the more that you receive.

Last edited by Samsan : 05-28-09 at 12:09 PM.
  Reply With Quote