WoW:XML file: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(Adding categories)
Line 18: Line 18:
   </Frame>
   </Frame>
  </Ui>
  </Ui>
[[Category:UI_technical_details]]

Revision as of 04:07, 14 May 2020

WoW AddOn


Example

<Ui xsi:schemaLocation="http://www.blizzard.com/wow/ui/">;
  <Script file="repopme.lua"/>;
  
  <Frame name="repopme_core">
    <Scripts>
      <OnLoad>
        self:RegisterEvent("PLAYER_DEAD");
      </OnLoad>
      <OnEvent> 
        repopme_OnEvent(event);
      </OnEvent>
    </Scripts>
  </Frame>
</Ui>