The capturing clause resumes the capturing effect from the previous execute...capturing statements in a FlashBASIC or BASIC program.
capturing [off|on|exp]
off | Turns off the capturing effect from the previous execute...capturing statements in a FlashBASIC or BASIC program. |
on | Resumes the capturing effect. |
exp | Capturing is turned on if the expression evaluates to nonzero (true) and turned off if it evaluates to 0 (false). |
system(26) checks to see if capturing is turned on. If capturing is on, this statement turns it off.
if system(26) then capturing off
If s evaluates to a number greater than 5, capturing is turned on.
capturing s > 5