ctrlSetEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 52: Line 52:
waitUntil {!isNull (findDisplay 12 displayCtrl 51)};<br>
waitUntil {!isNull (findDisplay 12 displayCtrl 51)};<br>
(findDisplay 12 displayCtrl 51) ctrlSetEventHandler ["MouseButtonDblClick", "hint str _this; true"];  // doesn't skip the marker dialog as it should.
(findDisplay 12 displayCtrl 51) ctrlSetEventHandler ["MouseButtonDblClick", "hint str _this; true"];  // doesn't skip the marker dialog as it should.
|-no text provided-}}</dd>
</dl>
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on May 1, 2021 - 14:37 (UTC)</dd>
<dt class="note">[[User:Lou Montana|Lou Montana]]</dt>
<dd class="note">{{#if:
test
|
test
|-no text provided-}}</dd>
|-no text provided-}}</dd>
</dl>
</dl>

Revision as of 16:37, 1 May 2021

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.


Posted on May 1, 2021 - 14:37 (UTC)
Lou Montana
test