I know there are a ton of ways to tackle this, but I know I always end up doing things the hard way.  So how would YOU do this: $this = "whatever.pdf" $that = "sure.xls" For [each of the above]    ... Next How I would probably end up doing it - because I don't know any better - is something like this $this = "whatever.pdf" $that = "sure.xls" Dim $a[2]=[$this, $that] For $i = 0 to Ubound( $a ) -1 ... Next But that seems... clunky. Probably (as always) there's some basic thing I'm mis