WoW:API SetOverrideBindingClick: Difference between revisions
Jump to navigation
Jump to search
(Updated with new information) |
No edit summary |
||
Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} {{protectedcombatapi|2.0}} | ||
Creates an override binding that performs a button click. | |||
SetOverrideBindingClick(owner, isPriority, "key", "buttonName"[, "mouseClick"]); | |||
== Arguments == | |||
; owner : Frame - The frame this binding "belongs" to; this can later be used to clear all override bindings belonging to a particular frame. | |||
; isPriority : Boolean - true if this is a priority binding, false otherwise. Both types of override bindings take precedence over normal bindings. | |||
; key : String - Binding to bind the command to. For example, "Q", "ALT-Q", "ALT-CTRL-SHIFT-Q", "BUTTON5" | |||
; buttonName : String - Name of the button widget this binding should fire a click event for. | |||
; mouseClick : String - Mouse button name argument passed to the OnClick handlers. | |||
- | == Details == | ||
; | * Override bindings take precedence over the normal {{api|SetBinding}} bindings. Priority override bindings take precedence over non-priority override bindings. | ||
* Override bindings are never saved, and will be wiped by an interface reload. | |||
* You cannot use this function to clear an override binding; use {{api|SetOverrideBinding}} instead. | |||
== See also == | |||
* {{api|SetOverrideBinding}} | |||
* {{api|SetOverrideBindingSpell}} | |||
* {{api|SetOverrideBindingItem}} | |||
* {{api|SetOverrideBindingMacro}} | |||
Revision as of 20:05, 14 March 2010
← WoW API < SetOverrideBindingClick
This function is protected, and cannot be called from insecure code while in in combat.
|
Creates an override binding that performs a button click.
SetOverrideBindingClick(owner, isPriority, "key", "buttonName"[, "mouseClick"]);
Arguments
- owner
- Frame - The frame this binding "belongs" to; this can later be used to clear all override bindings belonging to a particular frame.
- isPriority
- Boolean - true if this is a priority binding, false otherwise. Both types of override bindings take precedence over normal bindings.
- key
- String - Binding to bind the command to. For example, "Q", "ALT-Q", "ALT-CTRL-SHIFT-Q", "BUTTON5"
- buttonName
- String - Name of the button widget this binding should fire a click event for.
- mouseClick
- String - Mouse button name argument passed to the OnClick handlers.
Details
- Override bindings take precedence over the normal SetBinding bindings. Priority override bindings take precedence over non-priority override bindings.
- Override bindings are never saved, and will be wiped by an interface reload.
- You cannot use this function to clear an override binding; use SetOverrideBinding instead.