Hi Michael,

Using repeat for each *must not* modify the variable used:
Here tPerson is modified when running:

  repeat for each line tPerson in tpeople
    put "s" after tPerson
    put tPerson & return after holder
  end repeat

This leads to unexpected results.
Instead try:

  repeat for each line tPerson in tpeople
    put tPerson & "s" & cr after holder
  end repeat

And this will work as expected :-)

Le 19 juin 07 à 16:16, Michael Kann a écrit :

This seems urgent enough to send out an alert. If you
use the "for each" loop to manipulate text this bug
will be of interest.

Best regards from Paris,
Eric Chatonet.
----------------------------------------------------------------
Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/
----------------------------------------------------------------


_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to