Originally Posted By: Allen
Be careful of that "true"... it's not doing exactly what you think it is. It's only working because Kix is so forgiving.

Can you be more specific?

@Richard...ok I see what you mean.

@Glenn...that's pretty much what my first thought was. The problem is it doesn't exit the loop immidiately. For example:
 Code:
$Tag = 1
While $Tag     ; Loop forever while Tag is true
  ; do stuff here that should happen on every loop...
  If <EXIT CONDITION TEST>  ; if some condition exists where we should exit
    $Tag = 0
  EndIf
  ; do MORE stuff here that depends on the stuff earlier in the loop, but needs to not happen after the tag to exit the loop has been triggered.
Loop

It's not going to happen often, but it just seems unnecessary to force a certain style of coding in a free-format scripting language.