WoW:API ActionButtonDown: Difference between revisions
Jump to navigation
Jump to search
m (Styling) |
({{framexmlfunc|FrameXML/ActionButton.lua}}) |
||
Line 1: | Line 1: | ||
{{ | {{framexmlfunc|FrameXML/ActionButton.lua}} __NOTOC__ | ||
__NOTOC__ | |||
ActionButtonDown(buttonID); | ActionButtonDown(buttonID); | ||
Presses the specified action button. | |||
==Parameters== | ==Parameters== | ||
Line 30: | Line 30: | ||
:##Changes ActionButton1's state to PUSHED. | :##Changes ActionButton1's state to PUSHED. | ||
==Description== | |||
:Changes buttonID's state to PUSHED. | :Changes buttonID's state to PUSHED. | ||
:NOTE: Works with ActionBarFrame & BonusActionBarFrame. | :NOTE: Works with ActionBarFrame & BonusActionBarFrame. |
Revision as of 13:35, 5 September 2006
- This function is implemented in Lua here FrameXML/ActionButton.lua.
ActionButtonDown(buttonID);
Presses the specified action button.
Parameters
Arguments
- (Number buttonID)
- buttonID
- The button ID of the button to push
Returns
- nil
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.
Description
- Changes buttonID's state to PUSHED.
- NOTE: Works with ActionBarFrame & BonusActionBarFrame.