menuEnable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<tt>([^= ]+)<\/tt>" to "{{hl|$1}}")
m (Formatted parameter introduction version)
Line 7: Line 7:
|descr= Enables or disables menu entry on given path.
|descr= Enables or disables menu entry on given path.


{{Feature | Important | {{hl|control [[menuEnable]] path}} is still in use and left for backward compatibility}}
{{Feature | Important | The old alternative syntax {{hl|control [[menuEnable]] path}} is still in use and left for backward compatibility.}}
 
|s1= [[menuEnable]] [idc, path, enable]
|s1= [[menuEnable]] [idc, path, enable]


|p1= idc: [[Number]]
|p1= idc: [[Number]]
|p2= path: [[Array]]
|p2= path: [[Array]]
|p3= enable (Optional): [[Boolean]] - disable if [[false]], default [[true]] (Since Arma 3 v2.06)
|p3= enable (Optional): [[Boolean]] - disable if [[false]], default [[true]]
|p3since= arma3 2.06
|r1= [[Nothing]]
|r1= [[Nothing]]


Line 18: Line 20:
|p21= control: [[Control]]
|p21= control: [[Control]]
|p22= path: [[Array]]
|p22= path: [[Array]]
|p23= enable (Optional): [[Boolean]] - disable if [[false]], default [[true]] (Since Arma 3 v2.06)
|p23= enable (Optional): [[Boolean]] - disable if [[false]], default [[true]]
|p23since= arma3 2.06
|r2= [[Nothing]]
|r2= [[Nothing]]


Line 24: Line 27:
|x1= <code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuEnable]] [0];</code>
|x1= <code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuEnable]] [0];</code>


|x2= <code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuEnable]] <nowiki>[</nowiki>[0, 0, 1], [[false]]]; {{cc|Since Arma 3 v2.06}}</code>
|x2= <code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuEnable]] <nowiki>[</nowiki>[0, 0, 1], [[false]]]; {{cc|Since {{arma3}} v2.06}}</code>


|seealso= ‎[[menuEnabled]]
|seealso= ‎[[menuEnabled]]
}}
}}

Revision as of 17:23, 4 December 2021

Hover & click on the images for description

Description

Description:
Enables or disables menu entry on given path.
The old alternative syntax control menuEnable path is still in use and left for backward compatibility.
Groups:
GUI Control - Menu

Syntax

Syntax:
menuEnable [idc, path, enable]
Parameters:
idc: Number
path: Array
since Arma 3 logo black.png2.06
enable (Optional): Boolean - disable if false, default true
Return Value:
Nothing

Alternative Syntax

Syntax:
control menuEnable [path, enable]
Parameters:
control: Control
path: Array
since Arma 3 logo black.png2.06
enable (Optional): Boolean - disable if false, default true
Return Value:
Nothing

Examples

Example 1:
findDisplay 313 displayCtrl 120 menuEnable [0];
Example 2:
findDisplay 313 displayCtrl 120 menuEnable [[0, 0, 1], false]; // Since Arma 3 v2.06

Additional Information

See also:
menuEnabled

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