I am new to this forum. I am working on Adobe Designer 7.0. I like to copy value of a field to another field by default or by using button click, but it has not worked out so far. I have done following so far. Your comments, corrections and advice is appreciated.
I have two fields text2 and text2. The button has a javascript attached as click as:
var textcopy = text1.rawValue;
text2.rawValue = textcopy.value
I created variable textcopy and its value as text1
When I click the button, it doesn't do anything.
What am I doing wrong?
Thanks for your help.
text2.rawValue = textcopy;
George