ctrlAddEventHandler: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *H([a-z ])" to "$1 - h$2") |
m (added example) |
||
Line 40: | Line 40: | ||
|x2= <sqf>_map ctrlAddEventHandler ["draw", { hintSilent str _this }];</sqf> | |x2= <sqf>_map ctrlAddEventHandler ["draw", { hintSilent str _this }];</sqf> | ||
|x3= <sqf>findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["draw", { hintSilent str _this }]; //Arma 3 map control</sqf> | |||
|seealso= [[displayAddEventHandler]] [[ctrlRemoveEventHandler]] [[ctrlRemoveAllEventHandlers]] | |seealso= [[displayAddEventHandler]] [[ctrlRemoveEventHandler]] [[ctrlRemoveAllEventHandlers]] | ||
}} | }} |
Revision as of 23:04, 25 March 2024
Description
- Description:
- Add an event handler to the given control.
- Groups:
- GUI Control - Event HandlersEvent Handlers
Syntax
- Syntax:
- control ctrlAddEventHandler [handler, function]
- Parameters:
- control: Control
- handler: String - handler name, see User Interface Event Handlers
- function: String, since 1.06 also Code - script. Several Magic Variables are available:
- Event Handler parameters are accessible via _this
- The Event Handler type is available as _thisEvent
- The Event Handler index is available as _thisEventHandler
- Return Value:
- Number - handler ID or -1 if failed
Examples
- Example 1:
- _map ctrlAddEventHandler ["draw", "_this call BIS_fnc_strategicMapOpen_draw"];
- Example 2:
- Example 3:
- findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["draw", { hintSilent str _this }]; //Arma 3 map control
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