WoW:Bindings file: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with "{{uitech}} ← WoW AddOn WoW Bindings file is an AddOn file that describes the key bindings for an AddOns. == Reference == * Bindings format == Guid...")
 
m (Move page script moved page Bindings file to Bindings file without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{stub/API}}
{{uiaddon}}
{{uiaddon}}


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


Line 12: Line 13:
== Summary ==
== Summary ==


==== Example ====
=== Example ===
  <Bindings>
  <Bindings>
   <Binding name="Stop" description="Stop logging chat messages" header="MyAddon">
   <Binding name="Stop" description="Stop logging chat messages" header="MyAddon">

Latest revision as of 04:47, 15 August 2023

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]