WoW:API ActionButtonDown: Difference between revisions
Jump to navigation
Jump to search
({{framexmlfunc|FrameXML/ActionButton.lua}}) |
m (Changed some headers to bold.) |
||
Line 8: | Line 8: | ||
==Parameters== | ==Parameters== | ||
'''Arguments''' | |||
:(Number buttonID) | :(Number buttonID) | ||
:;buttonID : The button ID of the button to push | :;buttonID : The button ID of the button to push | ||
'''Returns''' | |||
:;nil | :;nil | ||
Line 19: | Line 19: | ||
ActionButtonDown(1); | ActionButtonDown(1); | ||
'''Result''' | |||
:#Checks if BonusActionBarFrame is visible. | :#Checks if BonusActionBarFrame is visible. | ||
:#If true - | :#If true - |
Revision as of 14:49, 16 October 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.