WoW:API ActionButtonDown: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Move page script moved page API ActionButtonDown to API ActionButtonDown without leaving a redirect) |
||
| (9 intermediate revisions by 8 users not shown) | |||
| Line 1: | Line 1: | ||
{{protectedapi|2.0|}} | |||
{{framexmlfunc|FrameXML/ActionButton.lua}} | |||
ActionButtonDown(buttonID); | ActionButtonDown(buttonID); | ||
Presses the specified action button. | |||
== Parameters == | |||
* buttonID (number) - The button ID of the button to push | |||
== Returns == | |||
* nil | |||
== Description == | |||
Changes buttonID's state to PUSHED. | |||
== Example == | |||
ActionButtonDown(1); | ActionButtonDown(1); | ||
Result | |||
:#Checks if BonusActionBarFrame is visible. | :#Checks if BonusActionBarFrame is visible. | ||
:#If true - | :#If true - | ||
| Line 32: | Line 29: | ||
:##Changes ActionButton1's state to PUSHED. | :##Changes ActionButton1's state to PUSHED. | ||
== Notes == | |||
Works with ActionBarFrame & BonusActionBarFrame. | |||
Latest revision as of 04:45, 15 August 2023
| This function is PROTECTED, and can only be called from Blizzard code.
|
This function is implemented in Lua here FrameXML/ActionButton.lua.
ActionButtonDown(buttonID);
Presses the specified action button.
Parameters
- buttonID (number) - The button ID of the button to push
Returns
- nil
Description
Changes buttonID's state to PUSHED.
Example
ActionButtonDown(1);
Result
- Checks if BonusActionBarFrame is visible.
- If true -
- Checks if BonusActionButton1 is in state NORMAL.
- If true -
- Changes BonusActionButton1's state to PUSHED.
- Returns.
- Checks if ActionButton1 is in state NORMAL.
- If true -
- Changes ActionButton1's state to PUSHED.
Notes
Works with ActionBarFrame & BonusActionBarFrame.