This content has been marked as final.
Show 3 replies
-
1. Re: Created flash form in 3.0 worked ok then tried 2.0 it doesn't
Newsgroup_User Feb 21, 2008 5:12 AM (in response to INVT)I think you want to control the order of the fields in the email. If I'm
wrong, ignore the rest of this message.
Assuming you're using FormMail by Matt Wright, do you know if your version
supports a sort field (version 1.4+)?
If so, you can add a sort field to the URLVariables (AS3). i.e.
variables.sort = "order:name,address,etc..."
variables.name = name_txt.text;
variables.email = email_txt.text;
variables.address = address_txt.text;
variables.city = city_txt.text;
variables.state = state_txt.text;
variables.list = list_txt.text;
variables.zip = zip_txt.text;
variables.phone = phone_txt.text;
variables.comments = comments_txt.text;
OR (AS2)
gatherForm.sort = "order:visitor_name,visitor_address,etc..."
gatherForm.visitor_name = contactForm.userName.text;
gatherForm.visitor_address = contactForm.userAddress.text;
gatherForm.visitor_city = contactForm.userCity.text;
gatherForm.visitor_state = contactForm.userState.text;
gatherForm.visitor_zip = contactForm.userZip.text;
gatherForm.visitor_select = contactForm.userSelect.text;
gatherForm.visitor_phone = contactForm.userPhone.text;
gatherForm.visitor_email = contactForm.userEmail.text;
gatherForm.visitor_comments = contactForm.userComments.text;
-
2. Re: Created flash form in 3.0 worked ok then tried 2.0 it doesn't
INVT Feb 21, 2008 10:52 AM (in response to Newsgroup_User)Thank you this worked perfectly.
I appreciate your time! -
3. Re: Created flash form in 3.0 worked ok then tried 2.0 it doesn't
Newsgroup_User Feb 21, 2008 11:23 AM (in response to Newsgroup_User)You're welcome

