Event Handlers/inGameUISetEventHandler – Arma 3
Jump to navigation
Jump to search
In Game UI Event Handlers trigger when user scrolls or activates in game action menu. Additionally a Boolean or Nothing is expected to be returned by the assigned code. If the assigned EH code returns true, default engine action is overridden. For all other available EHs see the main page.
Related Commands
Examples
inGameUISetEventHandler ["Action", "hint 'Lights, Camera, Action!'"]; // add EH
inGameUISetEventHandler ["Action", ""]; // remove EH
Events
Class | Description | Arguments - since 1.50 |
---|---|---|
PrevAction |
Triggers on mouse wheel scroll up. |
params ["_target", "_caller", "_index", "_name", "_text", "_priority", "_showWindow", "_hideOnUse", "_shortcut", "_visibility", "_eventName"];
|
Action |
Triggers on action key press. | |
NextAction |
Triggers on mouse wheel scroll down. |