continue

Syntax

continue

Description

This command allows you to skip the current iteration of a loop and proceed immediately to the next iteration. Only control loops that have an uncertain exit condition can use this command such as do loop, while, for and repeat loops. continue will have no effect on goto loops during the running of your program.

Example

for i = 1 to 10
    if i = 5
        continue
    endif
    SetSpriteVisible( i, 1 )
next i