ctrlSetEventHandler: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (added second example. updated note to try and make clearer dropping the On) |
||
Line 15: | Line 15: | ||
|p2= [handler name, function]: [[Array]] |= Parameter 2 | |p2= [handler name, function]: [[Array]] |= Parameter 2 | ||
| [[Nothing]] |= Return value | | [[Nothing]] |= Return value | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|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) | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 29: | Line 32: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
There is a listing of [[User Interface Event Handlers]] that will work with ctrlSetEventHandler, but when combining those UI event handlers you must drop the ''On'' part. | |||
<br>Bad Example: | |||
<code> _control ctrlSetEventHandler ["OnLBSelChanged", ""] </code> | |||
<br>Good Example: | |||
<code> _control ctrlSetEventHandler ["LBSelChanged", ""] </code> | |||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 22:21, 21 August 2007
Description
- Description:
- Sets given event handler of given control.
- Groups:
- Uncategorised
Syntax
- Syntax:
- control ctrlSetEventHandler [handler name, function]
- Parameters:
- control: Control
- [handler name, function]: Array
- Return Value:
- Nothing
Examples
- Example 1:
_control ctrlSetEventHandler ["KeyDown", ""]
- Example 2:
(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged", "[""ListChange"", _this] call FireEvents"];
Additional Information
- See also:
- displaySetEventHandler
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
-
There is a listing of User Interface Event Handlers that will work with ctrlSetEventHandler, but when combining those UI event handlers you must drop the On part.
Bad Example:
_control ctrlSetEventHandler ["OnLBSelChanged", ""]
Good Example:
_control ctrlSetEventHandler ["LBSelChanged", ""]