menuEnable: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style='display:none'>Bottom Section</h3>" to "")
m (Some wiki formatting)
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command
|arma3
 
|1.56
|game1= arma3
|arg=
|version1= 1.56
|eff=


|gr1= GUI Control - Menu
|gr1= GUI Control - Menu
| Enables disabled menu entry on given path.
 
| [[menuEnable]] [idc, path]
|descr= Enables or disables menu entry on given path.
 
|s1= [[menuEnable]] [idc, path, enable]
 
|p1= idc: [[Number]]
|p1= idc: [[Number]]
|p2= path: [[Array]]
|p2= path: [[Array]]
| [[Nothing]]


|s2= control [[menuEnable]] path
|p3= enable: [[Boolean]] - (Optional, default [[true]]) disabled if [[false]]
|p3since= arma3 2.06
 
|r1= [[Nothing]]
 
|s2= control [[menuEnable]] [path, enable]
 
|p21= control: [[Control]]
|p21= control: [[Control]]
|p22= path: [[Array]] |Alternative Parameter 22=
 
|p22= path: [[Array]]
 
|p23= enable: [[Boolean]] - (Optional, default [[true]]) disabled if [[false]]
|p23since= arma3 2.06
 
|r2= [[Nothing]]
|r2= [[Nothing]]


|x1= <code>[[findDisplay]] 313 [[displayCtrl]] 120 [[menuEnable]] [0];</code>
|s3= control [[menuEnable]] path {{Feature|obsolete|This old syntax is kept only for backward compatibility.|arma3|2.06}}


| [[menuExpand]], [[menuCollapse]], [[menuSetData]], [[menuSetValue]], [[‎menuSetCheck]], [[menuSetAction]], [[menuDelete]], [[menuAdd]], [[‎menuHover]], [[menuValue]], [[menuURL]], [[‎menuText]], [[menuSort]], [[‎menuSize]], [[menuEnabled]], [[‎menuChecked]], [[menuAction]], [[menuShortcutText]], [[menuShortcut]], [[menuPicture]], [[menuData]], [[menuClear]], [[menuSetPicture]]
|p41= control: [[Control]]
}}
 
|p42= path: [[Array]]


<dl class='command_description'>
|r3= [[Nothing]]
<!-- BEGIN Note Section -->
<!-- For example:
<dd class='notedate'>Posted on Month Day, Year - Time (UTC)</dd>
<dt class='note'>'''[[User:User Name|User Name]]'''</dt>
<dd class='note'>This is an example note. It is true and verifiable, and contains a little code snippet.
<code>[[if]] ([[_this]] == anExample) [[then]] { [[hint]] Leave it here for others to read; };</code></dd>
-->
<!-- END Note Section -->
</dl>


|x1= <sqf>findDisplay 313 displayCtrl 120 menuEnable [0]; // old syntax, do not use</sqf>


|x2= <sqf>findDisplay 313 displayCtrl 120 menuEnable [[0, 0, 1], false]; // since {{arma3}} v2.06</sqf>


{{GameCategory|arma3|Scripting Commands}}
|seealso= [[menuEnabled]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
}}

Latest revision as of 21:39, 3 May 2024

Hover & click on the images for description

Description

Description:
Enables or disables menu entry on given path.
Groups:
GUI Control - Menu

Syntax 1

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

Syntax 2

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

Syntax 3

Syntax:
control menuEnable path
🕖
This information is obsolete as of Arma 3 v2.06. Reason: This old syntax is kept only for backward compatibility.
Parameters:
control: Control
path: Array
Return Value:
Nothing

Examples

Example 1:
findDisplay 313 displayCtrl 120 menuEnable [0]; // old syntax, do not use
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