Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
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)
View solution in original post
Thanks so much for your help. That was exactly what I was looking for. Have a great day!!!!
Views
Likes
Replies