-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuctionHelper.xml
More file actions
executable file
·89 lines (87 loc) · 2.2 KB
/
AuctionHelper.xml
File metadata and controls
executable file
·89 lines (87 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<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/">
<Script file="AuctionHelper.lua"/>
<Frame name="B_AH_Frame" toplevel="true" parent="UIParent" enableMouse="true" hidden="true" frameStrata="HIGH">
<Anchors>
<Anchor point="TOPLEFT">
<Offset>
<AbsDimension x="637" y="-120"/>
</Offset>
</Anchor>
</Anchors>
<Size>
<AbsDimension x="1" y="1"/>
</Size>
<Frames>
<EditBox name="B_AH_Input_Name" autoFocus="false" letters="12" inherits="InputBoxTemplate">
<Size x="130" y="16" />
<Anchors>
<Anchor point="TOP" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString inherits="GameFontHighlight" text="[AuctionHelper]">
<Anchors>
<Anchor point="RIGHT" relativeTo="B_AH_Input_Name" relativePoint="LEFT">
<Offset>
<AbsDimension x="-8" y="0"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Scripts>
<OnTextChanged>
B_AH_GS[B_AH_Player]["Name"] = this:GetText()
</OnTextChanged>
</Scripts>
</EditBox>
<Button name="B_AH_Button_Start" inherits="GameMenuButtonTemplate" text="Start">
<Size x="50" y="16" />
<Anchors>
<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="B_AH_Input_Name">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
B_AH_Start()
</OnClick>
</Scripts>
</Button>
<Button name="B_AH_Button_Stop" inherits="GameMenuButtonTemplate" text="Stop">
<Size x="50" y="16" />
<Anchors>
<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="B_AH_Button_Start">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
B_AH_Stop()
</OnClick>
</Scripts>
</Button>
</Frames>
<Scripts>
<OnLoad>
B_AH_OnLoad()
</OnLoad>
<OnEvent>
B_AH_OnEvent()
</OnEvent>
<OnUpdate>
B_AH_OnUpdate()
</OnUpdate>
</Scripts>
</Frame>
</Ui>