> > --no space between the contents i.e. output will be
> > "txt1txt2txt3" lstrConcatString = member("name1").text &
> > member("name2").text & member("name3").text
> >
> > --space between contnents i.e. output will be "txt1 txt2
> > txt3" lstrConcatString = member("name1").text &&
> > member("name2").text && member("name3").text
>
> If that's what he's looking for, you're on the right track,
> but you got them reversed. & puts a space between the
> strings, && doesn't.
Ummm, Kerry, I think it's you that has them reversed:
put "hi"&"kerry"
-- "hikerry"
put "hi"&&"kerry"
-- "hi kerry"
Cheers,
Tom Higgins
Product Specialist - Director Team
Macromedia
...
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL
PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping
with programming Lingo. Thanks!]