Hello,
I'm trying to create a form where a phone number is filled into a text box, and an email address is filled into another text box, based on a selection made from a drop down list. I am using CS3.
Any help would be appreciated.
Solved! Go to Solution.
Views
Replies
Total Likes
in the exit event of the dropdown put something like (in formcalc):
if ($.rawValue == 1) then
phoneNumber = "12345566"
email = "blah@email.com"
elseif ($.rawValue == 2) then
phoneNumber = "67890"
email = "blah2@email.com"
endif
(make sure you have the "specify item values' box ticked for the dropdown list in object>binding)
Views
Replies
Total Likes
in the exit event of the dropdown put something like (in formcalc):
if ($.rawValue == 1) then
phoneNumber = "12345566"
email = "blah@email.com"
elseif ($.rawValue == 2) then
phoneNumber = "67890"
email = "blah2@email.com"
endif
(make sure you have the "specify item values' box ticked for the dropdown list in object>binding)
Views
Replies
Total Likes
Thanks so much for your help. That was exactly what I was looking for. Have a great day!!!!
Views
Replies
Total Likes
Views
Likes
Replies