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?
Text weaving magic anyone?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Text weaving magic anyone?
The underlying purpose of Al is to allow wealth to access skill
while removing from the skilled the ability to access wealth.
while removing from the skilled the ability to access wealth.
Eeee, just in case you don't get the fulls scope of what Nomi means...
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.
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.