Your comments

К сожалению, на ios такой возможности нет

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

Пожалуйста, опишите поподробнее, про авторизацию где именно Вы говорите?

Checking the change of address in the topic #17170

Hello.
There are two options for implementation:
1. Create in the project versions of pages and popups for each of the desired languages.


2. Create one set of pages and popups, when choosing a language, you will need to go through all pages and popups and on all elements where there is text, replace it with a similar one for another language. In the attached project there is an example of such a script. The function is called by pressing a button using Script Call in macros

Language.irpz

Здравствуйте.
Уточните, пожалуйста, Вы хотите установить пароль на открытие проекта в iRidium Studio или при запуске в эмуляторе/приложении на панели? Если первое, то это можно сделать в настройках проекта:

Если второе, то Вы можете реализовать это с помощью скрипта. Для этого Вам нужно будет создать попап, который будет показываться при старте приложения, на этом попапе создать Edit Box для ввода пароля и кнопку подтверждения. В скрипте, по нажатию на кнопку сравнивать введеное в Edit Box значение с заранее заданным и если они совпадают, то скрывать попап:
var pass = 123456 // заранее заданный пароль
IR.GetPopup("Popup 1").GetItem("Item 1").PasswordChar = "\u2022"; //скрыть вводимые символы
function password ()
{
var pass1 = IR.GetPopup("Popup 1").GetItem("Item 1").Text;
if (pass1 == pass) IR.HidePopup("Popup 1")
}
Функцию pаssword можно привязать к кнопке подтвеждения в макросах с помощью команды Script Call

Hello.
Yes, you can control multiple air conditioners with Enviro. To do this, use the commands from the Operation Code Panel Control, where in the Parameter property you specify which command will be sent to the air conditioner, and in the Option property you specify the air conditioner number:
https://dev.iridi.com/HDL/en#Panel

From here you can download an example of air conditioning control with Enviro^

http://iridiumdeveloperdoc.s3.amazonaws.com/HDL/HDL_Enviro.irpz

Hello.
Please specify if you are trying to get an image from the front / rear camera of the device? How to do this, you read here:
https://dev.iridi.com/IP_Cameras/en#Video_from_Cameras_of_Control_Panels

Hello.
If I understand you correctly, do you want the fields for entering new date and time values when selecting an event to be empty?


If yes, then in the script in lines 63 and 64 assign empty lines: