ctrlSetEventHandler: Difference between revisions
Jump to navigation
Jump to search
m (Text replace - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}} {{uc:{{PAGENAME}}}}") |
m (brought notes in proper format) |
||
Line 26: | Line 26: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <pre>_control ctrlSetEventHandler ["KeyDown", ""]</pre> |= Example 1 | |x1= <pre>_control [[ctrlSetEventHandler]] ["KeyDown", ""]</pre> |= Example 1 | ||
|x2= <pre>(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged","['ListChange',_this] call FireEvents"];</pre> |= Example 2 (using call) | |x2= <pre>(_display displayCtrl 108) [[ctrlSetEventHandler]] ["LBSelChanged","['ListChange',_this] call FireEvents"];</pre> |= Example 2 (using call) | ||
Line 40: | Line 40: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
The article [[User Interface Event Handlers]] contains a list of event handler names.<br> | |||
<dt class="note">Unknown <dd class="note">The article [[User Interface Event Handlers]] contains a list of event handler names.<br> | |||
Be aware though, that the preceding "on" in the listed names must be eliminated when used with the ctrlSetEventHandler command. | Be aware though, that the preceding "on" in the listed names must be eliminated when used with the ctrlSetEventHandler command. | ||
Line 46: | Line 47: | ||
use | use | ||
<code> _control ctrlSetEventHandler ["'''LBSelChanged'''", ""]; // '''''RIGHT''''' </code> | <code> _control ctrlSetEventHandler ["'''LBSelChanged'''", ""]; // '''''RIGHT''''' </code> | ||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 14:09, 25 March 2016
Description
- Description:
- Sets given event handler of given control. The provided function should return true/false indicating that the event has handled this event fully or not and whether the engine should execute it's default code or not afterwards. See User Interface Event Handlers for the full list of handler names. If applicable, see DIK_KeyCodes for a list of key code constants, which are relevant to key related user interface events like: KeyDown & KeyUp.
- Groups:
- Uncategorised
Syntax
- Syntax:
- controlName ctrlSetEventHandler [handlerName, function]
- Parameters:
- controlName: Control
- [handlerName, function]: Array
- handlerName: String
- function: String
- Return Value:
- Nothing
Examples
- Example 1:
_control [[ctrlSetEventHandler]] ["KeyDown", ""]
- Example 2:
(_display displayCtrl 108) [[ctrlSetEventHandler]] ["LBSelChanged","['ListChange',_this] call FireEvents"];
Additional Information
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
- Unknown
- The article User Interface Event Handlers contains a list of event handler names.
Be aware though, that the preceding "on" in the listed names must be eliminated when used with the ctrlSetEventHandler command. e.g. instead of_control ctrlSetEventHandler ["OnLBSelChanged", ""]; // WRONG
use_control ctrlSetEventHandler ["LBSelChanged", ""]; // RIGHT