Vanilla WoW Wiki
Advertisement

WoW AddOn

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

Reference[]

  • BindingID

Guides[]

  • Creating a bindings file
  • Localizing an AddOn

Summary[]

Example[]

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

Advertisement