Your comments

Hello.

Saved macros are located here in the Macro Editor window:

Hello.

The Programming window in which macros are created is opened with this button:


The Macro Editor window for an event is opened by clicking on the + button

Hello

IRidium has a mechanism for inviting end users. For the invitation, e-mail is used. Only those projects for which you invited him will be available to the end user:

https://dev.iridi.com/Licensing/en#Purchase_and_Activation

If you had in mind something else, then describe in more detail.

Hello.
The script will be triggered when the application starts, and during its operation

Hello

You can track time changes using the global listener and system time tokens.

https://dev.iridi.com/Systems_API/en#IR.SetGlobalListener

https://dev.iridi.com/Tokens_API/en#Time

Depending on the value of the token, you can show different messages. Example:

IR.AddListener(IR.EVENT_START,0,function()
{

function UpdateMessage()
{
if(IR.GetVariable("System.Time.Hour")>=6 && IR.GetVariable("System.Time.Hour")<12)
IR.Log("Goog Morning!")
if(IR.GetVariable("System.Time.Hour")>=12 && IR.GetVariable("System.Time.Hour")<18)
IR.Log("Good Afternoon!")
if(IR.GetVariable("System.Time.Hour")>=18 && IR.GetVariable("System.Time.Hour")<0)
IR.Log("Good Evening!")
if(IR.GetVariable("System.Time.Hour")>=0 && IR.GetVariable("System.Time.Hour")<6)
IR.Log("Goog Night!")

}

UpdateMessage();

IR.SetGlobalListener(IR.EVENT_GLOBAL_TAG_CHANGE, UpdateMessage);
IR.SubscribeTagChange("System.Time.Hour");
});

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

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

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

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