WoW:XML file: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
m (Move page script moved page XML file to XML file without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 18: Line 18:
   </Frame>
   </Frame>
  </Ui>
  </Ui>
[[Category:UI_technical_details]]

Latest revision as of 04:49, 15 August 2023

WoW AddOn


Example[edit]

<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>