Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

All custom procedures described in the script are to be in the same program body and before procedures in which they are called.

procedure ProcedureName(list of parameters){
    //procedure body
}

Important!

The names of parameters are to consist of one uppercase character.

Examples use:

procedure ProcedureName(A,B)
 
{
    n=A+" "+B;
    //when running macro 1 n=«Macro 1», when running macro 16 n=«Macro 16»
}
 
 
OnEvent("MACRO",N,"RUN")
 
{
    a1=N;
    a2="Macro";
    ProcedureName(a2,a1);
}
  • No labels