Your comments

Здравствуйте.

Скажите, пожалуйста, какой логин вы используете для авторизации?

Hello.
After converting the project, upload it to the Cloud in your My Account on the My pro tab. Detailed instructions for downloading the project to the Cloud and linking the license can be found here. Before binding a license in the license block for the project, you can activate a free trial period for 60 days.

Здравствуйте.

Пример прохода по всем фидбекам в драйвере:

    var num = IR.GetDevice("MyDevice").GetFeedbacksCount();  // количество фидбеков
    for (var i = 0; i < num; i++) {       // пробегаем по всем фидбекам
      var Feedback = IR.GetDevice("MyDevice").GetFeedbackAtPos(i);
      IR.Log("name: " + Feedback.name + ", data: " + Feedback.data);  // выводим name и data для каждого фидбека
    }

Hello.
What are your versions of iRidium on a laptop and iPad?

Hello.
The activated license can be exchanged in the My account on the iRidium V2-> License Exchange tab. Then you will need to convert the project - open and save the old project in the new iRidium Studio. In the test mode, verify that
everything has been correctly converted. Download the project to the Cloud, attach the license and invite users.

Здравствуйте.

Как сконвертировать полученные данные, вы можете прочитать здесь.

Здравствуйте.

Считать поле Data из фидбека можно с помощью метода .GetFeedbackAtName. Пробежаться по всем фидбекам можно с помощью цикла.

Здравствуйте.

Попробуйте в поле Data записывать строку в кавычках.

Hello.
This is a bug. It has been fixed for macros. For events in scripts will be corrected in the next versions.

Через скрипты можно сделать с помощью этих методов:

1. Получение статуса отключения дисплея, ответ (true/false)

var l_bValue = IR.GetDisplayPower();

2. Установка режима, true - всегда включен, либо false:

IR.SetDisplayPower(true/false);

Но эти методы не тестировались.