BIS fnc removeCommMenuItem: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Some wiki formatting)
 
(19 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function


| arma3 |Game name=
|game1= arma3
|version1= 0.50


|0.50|Game version=
|eff= local|gr1= Communication Menu


|eff= local |MPEFFECTS=
|descr= Remove an item from the [[Arma_3_Communication_Menu|communication menu]].


|gr1 = Communication Menu |GROUP1=
|s1= [owner,itemID] call [[BIS_fnc_removeCommMenuItem]]


| Remove an item from the [[Arma_3_Communication_Menu|communication menu]].|DESCRIPTION=
|p1= '''owner''': [[Object]] - object to which the item belongs to
|p2= '''itemID''': [[Number]] - item ID returned by [[BIS_fnc_addCommMenuItem]] command


| [owner,itemID] call [[BIS_fnc_removeCommMenuItem]]; |SYNTAX=
|r1= [[Boolean]] - true when the item was removed


|p1= '''owner''': [[Object]] - object to which the item belongs to |Parameter1=
|x1= <sqf>[player, 2] call BIS_fnc_removeCommMenuItem;</sqf>
|p2= '''itemID''': [[Number]] - item ID returned by [[BIS_fnc_addCommMenuItem]] command |PARAMETER2=


| [[Boolean]] - true when the item was removed |RETURNVALUE=
|x2= <sqf>
 
private _supportHeli = [player, "Support_Request_CAS_Heli"] call BIS_fnc_addCommMenuItem;
|x1= <code>[player,2] [[call]] [[BIS_fnc_removeCommMenuItem]];</code> |Example1=
[player, _supportHeli] call BIS_fnc_removeCommMenuItem;
 
</sqf>
|x2= <code>_supportHeli = [<nowiki/>[[player]],"Support_Request_CAS_Heli"] [[call]] [[BIS_fnc_addCommMenuItem]];
<nowiki>[</nowiki>[[player]],_supportHeli] [[call]] [[BIS_fnc_removeCommMenuItem]];</code> |EXAMPLE2=
 
| [[BIS_fnc_addCommMenuItem]], [[Arma 3 Communication Menu]] |SEEALSO=


|seealso= [[BIS_fnc_addCommMenuItem]] [[Arma 3: Communication Menu]]
}}
}}
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:removeCommMenuItem}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:removeCommMenuItem}}]]

Latest revision as of 13:39, 13 July 2022

Hover & click on the images for description

Description

Description:
Remove an item from the communication menu.
Execution:
call
Groups:
Communication Menu

Syntax

Syntax:
[owner,itemID] call BIS_fnc_removeCommMenuItem
Parameters:
owner: Object - object to which the item belongs to
itemID: Number - item ID returned by BIS_fnc_addCommMenuItem command
Return Value:
Boolean - true when the item was removed

Examples

Example 1:
[player, 2] call BIS_fnc_removeCommMenuItem;
Example 2:
private _supportHeli = [player, "Support_Request_CAS_Heli"] call BIS_fnc_addCommMenuItem; [player, _supportHeli] call BIS_fnc_removeCommMenuItem;

Additional Information

See also:
BIS_fnc_addCommMenuItem Arma 3: Communication Menu

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