Page 1 of 1

SKIP parameter not working in 9.5.1

Posted: Fri Apr 10, 2020 6:01 pm
by xfratboy
anyone run into the problem of the SKIP parameter not working in 9.5.1
ex:

Code: Select all

repeat with MyVariable = 0 to 100 SKIP 2 

gives an error: repeat: (bad termination condition) near "SKIP"

Re: SKIP parameter not working in 9.5.1

Posted: Fri Apr 10, 2020 6:15 pm
by Klaus
A "skip" parameter is for lineoffset, you probably mean STEP:

Code: Select all

repeat with MyVariable = 0 to 100 STEP 2 
There is no entry for SKIP in the dictionary.
If in doubt ALWAYS take a look there, it is better than its reputation. 8)