WoW:Bindings file

From AddOn Studio
Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page Bindings file to Bindings file without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW AddOn


WoW Bindings file is an AddOn file that describes the key bindings for an AddOns.

Reference[edit]

Guides[edit]

Summary[edit]

Example[edit]

<Bindings>
  <Binding name="Stop" description="Stop logging chat messages" header="MyAddon">
    MyAddon_StopLogChat();
  </Binding>
  <Binding name="Start" description="Start logging chat messages" runOnUp="true">
    MyAddon_StartLogChat();
  </Binding>
  <Binding name="OpenWindow" description="Open chat log window">
    MyAddon_OpenLogChat();
  </Binding>
</Bindings>

Format[edit]