> My "instictive" reaction is to try:
> 
> [% Images.$loop.index %]
> 
> which doesn't work.
> 
> This seems to greatly reduce the usefulness of the loop variables.
> 
> Of course, I can get around this by:
> 
> [% Temp = loop.index %]
> [% Images.$Temp %]

"$" is higher precedence than "."  Use this instead:

    [% Images.${loop.index} %]

Craig


Reply via email to