WoW:API ActionButtonDown: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m (Move page script moved page API ActionButtonDown to API ActionButtonDown without leaving a redirect)
 
(10 intermediate revisions by 9 users not shown)
Line 1: Line 1:
<center>'''ActionButtonDown''' ''-Documentation by AlexanderYoshi-''</center>
{{protectedapi|2.0|}}
 
{{framexmlfunc|FrameXML/ActionButton.lua}}
Press the specified action button.


  ActionButtonDown(buttonID);
  ActionButtonDown(buttonID);


----
Presses the specified action button.
;''Arguments''
 
:(Number buttonID)


:;buttonID : The button ID of the button to push
== Parameters ==
* buttonID (number) - The button ID of the button to push


----
== Returns ==
;''Returns''
* nil


:;nil
== Description ==
Changes buttonID's state to PUSHED.


----
== Example ==
;''Example''
  ActionButtonDown(1);
  ActionButtonDown(1);


;''Result''
Result
 
:#Checks if BonusActionBarFrame is visible.
----
:#If true -
;''Description''
:##Checks if BonusActionButton1 is in state NORMAL.
 
:##If true -
: Press the specified action button.
:###Changes BonusActionButton1's state to PUSHED.
:##Returns.
:#Checks if ActionButton1 is in state NORMAL.
:#If true -
:##Changes ActionButton1's state to PUSHED.


----
== Notes ==
{{Template:WoW API}}
Works with ActionBarFrame & BonusActionBarFrame.

Latest revision as of 04:45, 15 August 2023

WoW API < ActionButtonDown

"I" iconThis 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

  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.

Notes

Works with ActionBarFrame & BonusActionBarFrame.