Use this function to insert a count loop into a script definition.
%Loop.For(Variable,Value1,Value2,StepRange) { ... }
The parameter "variable" is the name of the counter variable. This counter variable can be used in the loop code as follows:
 %variable()
The parameters "value1" and "value2" are userdefined numbers. Use the optional parameter StepRange to set the step range for the loop counter to increment or decrement the loop variable, if this parameter is not set a step range of +1 is used.

Example:
%Loop.For(A,1,3,1){ %A() + }
A for loop is processed. The counter variable is called "A". The counter starts at number value 1 and goes up to 3. So the loop code enclosed by { } is processed 3 times and the data "1+2+3" is shown on lcd.