menuSetAction: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|gr1= GUI Control |GROUP1=" to "|gr1= GUI Control - Menu |GROUP1=")
m (2nd syntax, example and see also)
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________
 
|arma3 |= Game
|arma3 |= Game
|1.56|Game Version=
|1.56|Game Version=
|arg=  |Multiplayer Arguments=
|eff=  |Multiplayer Effects=


|gr1= GUI Control - Menu |GROUP1=
|gr1= GUI Control - Menu |GROUP1=
____________________________________________________________________________________________
 
| Sets new action into menu entry on given path. |DESCRIPTION=
| Sets new action into menu entry on given path. |DESCRIPTION=
____________________________________________________________________________________________
 
| [[menuSetAction]] [idc, path, action] |SYNTAX=
| [[menuSetAction]] [idc, path, action] |SYNTAX=
|p1= idc: [[Number]] |PARAMETER1=
|p1= idc: [[Number]] |PARAMETER1=
|p2= path: [[Array]] |PARAMETER2=
|p2= path: [[Array]] |PARAMETER2=
|p3= text: [[String]] |PARAMETER3=


| [[Number]] |RETURNVALUE=
|p3= action: [[String]] - Expression that should be executed when entry is clicked |PARAMETER3=
<!--
 
|s2= control |Alternative Syntax=
| [[Nothing]] |RETURNVALUE=
 
|s2= control [[menuSetAction]] [path, action] |Alternative Syntax=
 
|p21= control: [[Control]] |Alternative Parameter 1=
|p21= control: [[Control]] |Alternative Parameter 1=
|p22= |Alternative Parameter 2=
 
|p23= |Alternative Parameter 3=
|p22= path: [[Array]] |Alternative Parameter 2=
|r2=  |Alternative Return Value=
 
-->
|p22= action: [[String]] - Expression that should be executed when entry is clicked |Alternative Parameter 3=
|x1=  |EXAMPLE1=
 
| ‎[[menuEnable]], [[menuExpand]], [[menuCollapse]], [[menuSetData]], [[menuSetValue]], [[‎menuSetCheck]], [[menuDelete]], [[menuAdd]], [[‎menuHover]], [[menuValue]], [[menuURL]], [[‎menuText]], [[menuSort]], [[‎menuSize]], [[menuEnabled]], [[‎menuChecked]], [[menuAction]], [[menuShortcutText]], [[menuShortcut]], [[menuPicture]], [[menuData]], [[menuClear]], [[menuSetPicture]] |SEEALSO=
|r2=  [[Nothing]] |Alternative Return Value=
 
|x1=  <Code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuSetAction]] <nowiki>[</nowiki>[0, 1], "systemChat 'Hello World!'"];</code>|EXAMPLE1=
 
 
| [[menuAction]] |SEEALSO=
}}
}}



Revision as of 10:00, 19 October 2020

Hover & click on the images for description

Description

Description:
Sets new action into menu entry on given path.
Groups:
GUI Control - Menu

Syntax

Syntax:
menuSetAction [idc, path, action]
Parameters:
idc: Number
path: Array
action: String - Expression that should be executed when entry is clicked
Return Value:
Nothing

Alternative Syntax

Syntax:
control menuSetAction [path, action]
Parameters:
control: Control
action: String - Expression that should be executed when entry is clicked
Return Value:
Nothing

Examples

Example 1:
findDisplay 313 displayCtrl 120 menuSetAction [[0, 1], "systemChat 'Hello World!'"];

Additional Information

See also:
menuAction

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

Bottom Section