setInfoPanel: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Comments" to "|Comments=")
mNo edit summary
 
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 1.72


|1.72|= Game version
|gr1= Custom Panels
____________________________________________________________________________________________


| Opens given component or first component of given component type on specified info panel. |DESCRIPTION=
|descr= Opens given component or first component of given component type on specified info panel.
____________________________________________________________________________________________


| [[setInfoPanel]] [infopanelId, componentClassOrType]; |SYNTAX=
|s1= [[setInfoPanel]] [infoPanelId, componentClassOrType]


|p1= infoPanelId: [[String]] - info panel classname, or "left" or "right" |PARAMETER1=
|p1= infoPanelId: [[String]] - info panel classname, or "left" or "right"


|p2= componentClassOrType: [[String]] |PARAMETER1=
|p2= componentClassOrType: [[String]]


| [[Boolean]] - [[true]] if panel was successfully opened, [[false]] otherwise (e.g. opening GPS on player without GPS item or setting panel to vehicle that doesn't have such capability configured) |RETURNVALUE=
|r1= [[Boolean]] - [[true]] if panel was successfully opened, [[false]] otherwise (e.g. opening GPS on player without GPS item or setting panel to vehicle that doesn't have such capability configured)
____________________________________________________________________________________________


|x1 = <code>{{codecomment|//opens slingload assistant on right panel}}
|x1= <sqf>
_result = [[setInfoPanel]] ["VehicleSystemsDisplayManagerComponentRight", "SlingLoadDisplayComponent"];</code> |EXAMPLE1=
// opens slingload assistant on right panel
private _result = setInfoPanel ["VehicleSystemsDisplayManagerComponentRight", "SlingLoadDisplayComponent"];
if (!_result) then { hint "could not open the slingload assistant, sorry" };
</sqf>


| [[Arma 3 Custom Info]], [[infoPanel]], [[infoPanels]], [[infoPanelComponents]], [[enableInfoPanelComponent]], [[infoPanelComponentEnabled]] |SEEALSO=
|seealso= [[Arma 3 Custom Info]] [[infoPanel]] [[infoPanels]] [[infoPanelComponents]] [[enableInfoPanelComponent]] [[infoPanelComponentEnabled]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Custom Panels]]

Latest revision as of 06:03, 27 November 2023

Hover & click on the images for description

Description

Description:
Opens given component or first component of given component type on specified info panel.
Groups:
Custom Panels

Syntax

Syntax:
setInfoPanel [infoPanelId, componentClassOrType]
Parameters:
infoPanelId: String - info panel classname, or "left" or "right"
componentClassOrType: String
Return Value:
Boolean - true if panel was successfully opened, false otherwise (e.g. opening GPS on player without GPS item or setting panel to vehicle that doesn't have such capability configured)

Examples

Example 1:
// opens slingload assistant on right panel private _result = setInfoPanel ["VehicleSystemsDisplayManagerComponentRight", "SlingLoadDisplayComponent"]; if (!_result) then { hint "could not open the slingload assistant, sorry" };

Additional Information

See also:
Arma 3 Custom Info infoPanel infoPanels infoPanelComponents enableInfoPanelComponent infoPanelComponentEnabled

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