WoW:Bindings file: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 4: Line 4:
WoW Bindings file is an [[WoW AddOn|AddOn]] file that describes the key bindings for an AddOns.   
WoW Bindings file is an [[WoW AddOn|AddOn]] file that describes the key bindings for an AddOns.   


== Reference ==
== Reference ==  
* [[BindingID]]
* [[BindingID]]



Revision as of 18:55, 14 August 2012

WoW AddOn


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

Reference

Guides

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