WoW API: ActionButtonDown
Jump to navigation
Jump to search
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[edit]
- buttonID (number) - The button ID of the button to push
Returns[edit]
- nil
Description[edit]
Changes buttonID's state to PUSHED.
Example[edit]
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[edit]
Works with ActionBarFrame & BonusActionBarFrame.