buttonAction: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.75


|1.5|= Game version
|game2= ofpe
|version2= 1.00


|arg= local |= Arguments in MP
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| Return the action assigned to a control of the currently active user dialog. Can be used for buttons and active texts. Read [[Dialog Control]] for more information about user dialogs and controls. |= Description
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| '''buttonAction''' idc |= Syntax
|game5= arma2oa
|p1= idc: [[Number]]. index of button |= Parameter 1
|version5= 1.50
| [[String]] |= Return value


|s2= '''buttonAction''' control |= Syntax
|game6= tkoh
|p21= control: [[Control]] |= Parameter 1
|version6= 1.00
|r2= [[String]] |= Return value
____________________________________________________________________________________________
 
|x1= <pre>buttonSetAction [100, {player exec "reply.sqs"}]
_action = buttonAction 100</pre>


returns {player exec "reply.sqs"} |= Example 1
|game7= arma3
____________________________________________________________________________________________
|version7= 0.50


| [[buttonSetAction]], [[ctrlActivate]] |= See also
|gr1= GUI Control


}}
|arg= local
 
|descr= Returns the action assigned to a control of the currently active user dialog. Can be used for buttons and active texts. Read [[Arma: GUI Configuration]] for more information about user dialogs and controls.
 
|s1= [[buttonAction]]  idc
 
|p1= idc: [[Number]] - Button IDC
 
|r1= [[String]]
 
|s2= [[buttonAction]]  control


<h3 style="display:none">Notes</h3>
|p21= control: [[Control]]
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|r2= [[String]]
</dl>


<h3 style="display:none">Bottom Section</h3>
|x1= <sqf>
buttonSetAction [100, { player exec "reply.sqs" }]
_action = buttonAction 100; // Returns { player exec "reply.sqs" }
</sqf>


[[Category:Scripting Commands|BUTTONACTION]]
|seealso= [[buttonSetAction]]
[[Category:Scripting Commands OFP 1.99|BUTTONACTION]]
}}
[[Category:Scripting Commands OFP 1.96|BUTTONACTION]]
[[Category:Scripting Commands ArmA|BUTTONACTION]]
[[Category:Scripting Commands ArmA2|BUTTONACTION]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 00:48, 11 July 2022

Hover & click on the images for description

Description

Description:
Returns the action assigned to a control of the currently active user dialog. Can be used for buttons and active texts. Read Arma: GUI Configuration for more information about user dialogs and controls.
Groups:
GUI Control

Syntax

Syntax:
buttonAction idc
Parameters:
idc: Number - Button IDC
Return Value:
String

Alternative Syntax

Syntax:
buttonAction control
Parameters:
control: Control
Return Value:
String

Examples

Example 1:
buttonSetAction [100, { player exec "reply.sqs" }] _action = buttonAction 100; // Returns { player exec "reply.sqs" }

Additional Information

See also:
buttonSetAction

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note