put text fields together
Posted: Sat Apr 05, 2008 3:47 pm
Hello,
I am working with some fld values, and putting them together from one field to another, like this,
button one
button two
this works well, however all the values from the text fields run together,
This would work ok I think for parsing the script, however, from a readability standpoint, it would be nice to put something inbetween them so each value would appear on its own line like this,
So now I am wondering how I could put the text of the fields on a separate line
so that the output is easier to verify that the code is correct.
Thanks in advance for any suggestions or pointers.
Tim
I am working with some fld values, and putting them together from one field to another, like this,
button one
Code: Select all
put the text of fld var_one into me
put me into fld var_two
Code: Select all
put the text of fld var_two into me
put the text of fld var_three after me
put me into fld var_four
this works well, however all the values from the text fields run together,
Code: Select all
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
Code: Select all
document.write('<object classid="clsid:D27CDB6EAE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
so that the output is easier to verify that the code is correct.
Thanks in advance for any suggestions or pointers.
Tim