ex:
Code: Select all
repeat with MyVariable = 0 to 100 SKIP 2
gives an error: repeat: (bad termination condition) near "SKIP"
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
repeat with MyVariable = 0 to 100 SKIP 2
Code: Select all
repeat with MyVariable = 0 to 100 STEP 2