WoW:API ActionButtonDown: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
({{framexml}})
Line 1: Line 1:
{{framexml}}
  <center>'''ActionButtonDown''' ''-Documentation by AlexanderYoshi-''</center>
  <center>'''ActionButtonDown''' ''-Documentation by AlexanderYoshi-''</center>


Line 37: Line 39:
:Changes buttonID's state to PUSHED.  
:Changes buttonID's state to PUSHED.  
:NOTE: Works with ActionBarFrame & BonusActionBarFrame.
:NOTE: Works with ActionBarFrame & BonusActionBarFrame.
----
{{Template:WoW API}}
[[Category:World of Warcraft API|ActionButtonDown]]

Revision as of 13:35, 10 June 2006

WoW API < ActionButtonDown

ActionButtonDown -Documentation by AlexanderYoshi-

Press the specified action button.

ActionButtonDown(buttonID);

Arguments
(Number buttonID)
buttonID
The button ID of the button to push

Returns
nil

Example
ActionButtonDown(1);
Result
  1. Checks if BonusActionBarFrame is visible.
  2. If true -
    1. Checks if BonusActionButton1 is in state NORMAL.
    2. If true -
      1. Changes BonusActionButton1's state to PUSHED.
    3. Returns.
  3. Checks if ActionButton1 is in state NORMAL.
  4. If true -
    1. Changes ActionButton1's state to PUSHED.



Description
Changes buttonID's state to PUSHED.
NOTE: Works with ActionBarFrame & BonusActionBarFrame.