WoW:API SetBindingClick: Difference between revisions

m
Move page script moved page API SetBindingClick to WoW:API SetBindingClick without leaving a redirect
mNo edit summary
m (Move page script moved page API SetBindingClick to WoW:API SetBindingClick without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{wowapi}} {{protectedcombatapi|2.0|Snippets executed by [[SecureHandlers]] may alter [override] bindings in-combat.}}
{{wowapi}} {{protectedcombatapi|2.0|Snippets executed by [[SecureHandlers]] may alter [override] bindings while in combat.}}
Sets a binding to click the specified button object.
Sets a binding to click the specified button object.
  ok = SetBindingClick("key", "buttonName"[, "button"]);
  ok = SetBindingClick("key", "buttonName"[, "button"]);
Line 13: Line 13:
== Details ==
== Details ==
* This function is functionally equivalent to the following statement.
* This function is functionally equivalent to the following statement.
  ok = {{api|SetBinding}}("key", "CLICK " .. spell .. (button and (":" .. button) or ""));
  ok = {{api|SetBinding}}("key", "CLICK " .. buttonName .. (button and (":" .. button) or ""));
* A single binding can only be bound to a single command at a time, although multiple bindings may be bound to the same command. The Key Bindings UI will only show the first two bindings, but there is no limit to the number of keys that can be used for the same command.
* A single binding can only be bound to a single command at a time, although multiple bindings may be bound to the same command. The Key Bindings UI will only show the first two bindings, but there is no limit to the number of keys that can be used for the same command.
* You must use {{api|SetBinding}} to unbind a key.
* You must use {{api|SetBinding}} to unbind a key.
Anonymous user