setGroupIcon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Added actual parameter information)
m (Just made clear that the icon must be from CfgGroupIcons)
Line 16: Line 16:
|p2= id: [[Number]] - The icon ID returned by [[addGroupIcon]] |= PARAMETER2  
|p2= id: [[Number]] - The icon ID returned by [[addGroupIcon]] |= PARAMETER2  


|p3= icon: [[String]] - Path to the desired icon |= PARAMETER3  
|p3= icon: [[String]] - Class name of desired icon from CfgGroupIcons |= PARAMETER3  


|p4= offset: [[Array]] - X and Y offsets of the icon in form [offsetX, offsetY] |= PARAMETER4  
|p4= offset: [[Array]] - X and Y offsets of the icon in form [offsetX, offsetY] |= PARAMETER4  

Revision as of 21:09, 2 October 2018

Hover & click on the images for description

Description

Description:
Set group icons properties.
Groups:
Uncategorised

Syntax

Syntax:
group setGroupIcon [id, icon, offset]
Parameters:
group: Group
id: Number - The icon ID returned by addGroupIcon
icon: String - Class name of desired icon from CfgGroupIcons
offset: Array - X and Y offsets of the icon in form [offsetX, offsetY]
Return Value:
Nothing

Examples

Example 1:
_target setGroupIcon [_icon,"hc_selectedEnemy"];
_target setGroupIcon [_icon,"flag"];
_grp setGroupIcon [_iconsize,_iconsizeclass,_offset];
_grp setGroupIcon [_newid,_icon,_offset];
_grp setGroupIcon [_icon,_iconclass];

Additional Information

See also:
addGroupIconclearGroupIconsgetGroupIcongetGroupIconParamsgroupIconSelectablegroupIconsVisibleonGroupIconClickremoveGroupIconsetGroupIconParamssetGroupIconsSelectablesetGroupIconsVisible

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

Notes

Bottom Section