Authors own their submissions and grant full use rights to the site owner.
Commercial reproduction is prohibited without prior written permission (please ask first).
The FXScript Reference is an independent resource, created and funded through user contributions and my wallet. If you find the site useful, please donate to help keep this unique resource online.
Counter is a float variable, start and finish can be any numeric variable. An example, stepping from 0 to 10 by twos would look like this:
float x;
repeat with x from 0 to 10 step 2
...
end repeat
// result, x steps through: 0,2,4,6,8,10
Repeat With Counter seems identical to FXScript's implementation of for/next loops.