onHCGroupSelectionChanged: Difference between revisions
Jump to navigation
Jump to search
Fred Gandt (talk | contribs) m (Added to "see also" + wikilinking. Still needs example. Description is unintelligible.) |
(added description, added example) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Defines an action performed when [[High Command|high command]] group has been | | Defines an action performed when [[High Command|high command]] group selection has been changed. | ||
<br> | <br> | ||
Command receives | Command receives 2 variables: | ||
*_group: [[Group]] - last selected/deselected group | |||
*_isSelected: [[Boolean]] - new selection state of the specific group | |||
The code is executed on every [[High Command|hc]] group selection change until it is | |||
* removed via <code>[[onHCGroupSelectionChanged]] "";</code> or <code>[[onHCGroupSelectionChanged]] {};</code> | |||
* or replaced by <code>[[onHCGroupSelectionChanged]] "SomeOtherCommand(s)";</code> or <code>[[onHCGroupSelectionChanged]] {SomeOtherCommand(s)};</code> | |||
|= Description | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| '''onHCGroupSelectionChanged''' command |= Syntax | | '''onHCGroupSelectionChanged''' command |= Syntax | ||
|p1= command: | |p1= command: [[String]] or [[Code]] |= PARAMETER1 | ||
|p2= |= PARAMETER2 | |p2= |= PARAMETER2 | ||
Line 20: | Line 28: | ||
|p3= |= PARAMETER3 | |p3= |= PARAMETER3 | ||
| Nothing |= RETURNVALUE | | [[Nothing]] |= RETURNVALUE | ||
|x1= <code>[[onHCGroupSelectionChanged]] { | |||
[[if]] (_isSelected) [[then]] { | |||
[[hint]] [[format]] ["Group %1 has been selected.", _group]; | |||
} [[else]] { | |||
[[hint]] [[format]] ["Group %1 has been deselected.", _group]; | |||
}; | |||
};</code>|= EXAMPLE1 | |||
| | |x2= <code>[[onHCGroupSelectionChanged]] "[[player]] [[globalChat]] 'HC group selection has been changed.';";</code>|= EXAMPLE2 | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ |
Revision as of 10:56, 22 March 2014
Description
- Description:
- Defines an action performed when high command group selection has been changed.
Command receives 2 variables:- _group: Group - last selected/deselected group
- _isSelected: Boolean - new selection state of the specific group
- removed via
onHCGroupSelectionChanged "";
oronHCGroupSelectionChanged {};
- or replaced by
onHCGroupSelectionChanged "SomeOtherCommand(s)";
oronHCGroupSelectionChanged {SomeOtherCommand(s)};
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
onHCGroupSelectionChanged { if (_isSelected) then { hint format ["Group %1 has been selected.", _group]; } else { hint format ["Group %1 has been deselected.", _group]; }; };
- Example 2:
onHCGroupSelectionChanged "player globalChat 'HC group selection has been changed.';";
Additional Information
- See also:
- High Command, hcAllGroups, hcGroupParams, hcLeader, hcRemoveAllGroups, hcRemoveGroup, hcSelected, hcSelectGroup, hcSetGroup, hcShowBar, hcShownBar
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