ctrlSetEventHandler

From Bohemia Interactive Community
Revision as of 21:59, 28 April 2021 by PierreMGI (talk | contribs)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Description needed
Groups:
GUI Control - Event HandlersEvent Handlers

Syntax

Syntax:
Syntax needed
Parameters:
controlName: Control
[handlerName, function]: Array
handlerName: String
function: String
Return Value:
Return value needed

Examples

Example 1:
_control ctrlSetEventHandler ["KeyDown", ""]
Example 2:
(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged","['ListChange',_this] call FireEvents"];

Additional Information

See also:
displaySetEventHandlerctrlAddEventHandlerctrlRemoveEventHandlerUI Event HandlersDIK KeyCodes

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


Posted on April 28, 2021 - 19:59 (UTC)
pierremgi
This command doesn't work on map.
waitUntil {!isNull (findDisplay 12 displayCtrl 51)};
(findDisplay 12 displayCtrl 51) ctrlSetEventHandler ["MouseButtonDblClick", "hint str _this; true"]; // doesn't skip the marker dialog as it should.