Материал из Module developer
Перейти к: навигация, поиск

IR.EVENT_MODULE_START

Start of module work. IR.EVENT_START event is not supported

Синтаксис

module.AddListener(IR.EVENT_MODULE_START, 0, function, [pointer]);

Название Пример Описание
function type: function
unnamed function or reference to a function
pointer type: object
pointer to an object that services a function (optional)
На выходе

-


Пример

module.AddListener(IR.EVENT_MODULE_START, 0, function ()
{
    IR.Log("action"); // action
});