-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.xml
More file actions
32 lines (27 loc) · 845 Bytes
/
Copy pathMain.xml
File metadata and controls
32 lines (27 loc) · 845 Bytes
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
<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">
<Frame name="FT_HandlerFrame">
<Scripts>
<OnLoad>
FT_OnLoad(self);
</OnLoad>
<OnEvent>
FT_OnEvent(self, event, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
</OnEvent>
</Scripts>
</Frame>
<GameTooltip name="FT_HiddenTooltip" inherits="GameTooltipTemplate" parent="UIParent" hidden="true">
<Scripts>
<OnLoad>
self:SetOwner(UIParent, "ANCHOR_NONE");
</OnLoad>
</Scripts>
</GameTooltip>
<GameTooltip name="FT_BoPCheckingTooltip" inherits="GameTooltipTemplate">
<Scripts>
<Onload>
self:SetOwner(WorldFrame, "ANCHOR_NONE");
</Onload>
</Scripts>
</GameTooltip>
</Ui>