#include "..\script_component.hpp" /* * Author: IDSolutions * Open notification interface. * * Arguments: * None * * Return Value: * None * * Example: * [] call forge_client_notifications_fnc_openUI; * * Public: No */ private _display = uiNamespace getVariable ["RscNotifications", nil]; private _ctrl = (_display displayCtrl 1004); _ctrl ctrlAddEventHandler ["JSDialog", { params ["_control", "_isConfirmDialog", "_message"]; [_control, _isConfirmDialog, _message] call FUNC(handleUIEvents); }]; _ctrl ctrlWebBrowserAction ["LoadFile", QPATHTOF2(ui\_site\index.html)]; // _ctrl ctrlWebBrowserAction ["OpenDevConsole"]; true;