4fca65b5f3
- Few improvements on how instances load on logon. - Slash commands are now more responsible, 'show' shows all windows, 'hide' hide them all, 'new' create a window. - More Fixes for alpha mods and auto interact. - New API: instance:InstaceAlpha (alpha) modify the alpha of window textures without saving. - New API: instance:SetIconAlpha (alpha, hide, no_animations), modify the alpha of buttons without saving.
18 lines
435 B
XML
18 lines
435 B
XML
<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">
|
|
|
|
<!-- event listener -->
|
|
<Frame name="_detalhes_listener">
|
|
<Scripts>
|
|
<OnLoad>
|
|
self:RegisterEvent ("ADDON_LOADED");
|
|
</OnLoad>
|
|
<OnEvent>
|
|
_detalhes.OnEvent (self, event, ...);
|
|
</OnEvent>
|
|
</Scripts>
|
|
</Frame>
|
|
</Ui>
|