Currently, I'm trying to while loop $calc($3- -2), but you get the idea.

Trying to get:

$3
$4
$5

etc. until it reaches $0.

Except, I'm using a variable.

Something like.

var %v = 3

Then $ $+ %v | inc %v

To get:

$ $+ %v = $ $+ 3 = $3 | inc %v
$ $+ %v = $ $+ 4 = $4 | inc %v

Etc.

Problem is, I can't concatenate.

$ = $chr(36)

Code.

Code:
  var %v = 3
  while (%v <= $0) {
    %v = $left($eval($ $+ %v,2),1)
    ;I've tried $left($eval($chr(36) $+ %v,2),1)    
    inc %v
  }


The above code was trying to while loop the 1st letter of each word in $3-: $3, $4, $5, etc.

Trying to get:

$left($3,1) | inc etc.
$left($4,1) | inc etc.

No luck.

And I would find it useful to while loop each and every word in $1- on an on text event. smirk

Thanks.

-Neal.