ctrlSetEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
No edit summary
Line 38: Line 38:
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on April 28, 2021 - 19:59 (UTC)</dd>
<dt class="note">[[User:pierremgi|pierremgi]]</dt>
<dd class="note">{{#if:
This command doesn't work on map.<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.
|
This command doesn't work on map.<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.
|-no text provided-}}</dd>
</dl>

Revision as of 21:59, 28 April 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.