View Single Post
03-01-06, 10:55 PM   #1
oreth
A Murloc Raider
Join Date: Mar 2006
Posts: 6
A Question about Simple Buttons

I've been attempting UI Design for WoW for about a week now. I've figured out how to react to events using text and what not, but I have yet to successfully create a button.

I'm using this code inside a Frame header (in the xml file)

Code:
	<Button name="TestButton" text="Go!" hidden="false" parent="TestFrame"> 
		<Size>
			<AbsDimension x="60" y="30"/>
		</Size>
		<Anchors>
			<Anchor point="CENTER"/>
		</Anchors>
	</Button>
The script does not error out as I have outputs for when the script loads, yet I can't get my button to show up on the screen. What am I possibly doing wrong?
  Reply With Quote