Page 1 of 1

Text weaving magic anyone?

Posted: Thu May 22, 2008 5:00 am
by dalkin
Hi there,

The manual arrived today! Not that I can find an answer to this at all ... Is it possible to return the input from 4 text fields into a single text field in a designated order?

Posted: Thu May 22, 2008 5:02 am
by Nomi
put textfield1 & textfield2 & textfield3 & textfield 4 into singletextfield

You would just decide which order you wanted, and if you needed any form of delimiter.

- Noel

Posted: Thu May 22, 2008 5:06 am
by dalkin
Gosh, that was swift!! Many thanks

Posted: Thu May 22, 2008 10:09 pm
by Garrett
Eeee, just in case you don't get the fulls scope of what Nomi means...

Code: Select all

put field "field1" & field "field2" & field "field3" & field "field4" into field "finalfield"

Note that in his example you're simply taking 4 variables and placing them into a variable. But if you're in need of taking 4 fields and placing them into a resulting field, the above is what you need.