Sets an override binding to "click" a Button object. Override bindings are temporary. The bound key will revert to its normal setting once the override is removed. Priority overrides work the same way but will revert to the previous override binding (if present) rather than the base binding for the key.

Call with a fourth argument of nil to remove the override binding for a specific key, or see ClearOverrideBindings() to remove all bindings associated with a given owner.


See also Keybind functions.

Signature:

SetOverrideBindingClick(owner, isPriority, "key", "buttonName" [, "mouseButton"])

Arguments:

  • owner - The Frame (or other widget) object responsible for this override (table)
  • isPriority - True if this binding takes higher priority than other override bindings; false otherwise (boolean)
  • key - A key or key combination (e.g. "CTRL-2") (string, binding)
  • buttonName - Name of a Button object on which the binding simulates a click (string)
  • mouseButton - Name of the mouse button with which the binding simulates a click (string)