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