View Single Post
03-25-09, 08:33 PM   #12
kilth2
A Warpwood Thunder Caller
 
kilth2's Avatar
AddOn Compiler - Click to view compilations
Join Date: Jan 2009
Posts: 93
ok, i am working on it and i think i have a useable .toc file (lmao, of course) and for what I am thinking I will need an XML file or no? Because if i do then i have this pretty much made up (it was used as an example on some website again i know ima n00b)

Code:
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
	<Button name="StudUIpanel" parent="UIParent" enableMouse="true" movable="true" frameStrata="LOW">

	<Size x="100" y="40"/>

	<Anchors>
		<Anchor point="CENTER" relativePoint="CENTER" relativeTo="UIParent">
		</Anchor>
	</Anchors>


	<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
		<BackgroundInsets>
			<AbsInset left="11" right="12" top="12" bottom="11"/>
		</BackgroundInsets>

		<TileSize>
			<AbsValue val="32"/>
		</TileSize>
		
		<EdgeSize>
			<AbsValue val="32"/>
		</EdgeSize>
	</Backdrop>

	<Layers>
		<Layer level="OVERLAY">
			<FontString name="$parentText" inherits="GameFontNormalSmall" justifyH="CENTER" setAllPoints="true" text="StudUIPanel"/>
		</Layer>
	</Layers>


	</Button>
</Ui>

Last edited by kilth2 : 03-25-09 at 08:39 PM.