How to make a Flash Contact form Work
foamers.net will install this script for you for as little as $80 a pop. Should you wish to employ our design team to make your Flash contact form work hop on over to the contact page and talk to us..
If you have been searching around trying to figure out what is the easiest way to make a Flash contact form work, then this is it. In this tutorial you will learn how to create a Flash contact form. PHP is provided. Very simple..
First of all, please see How to make a contact form work demo movie.
Then you should DOWNLOAD the following php script, save it as contact.php:
$your_company = $_GET[‘company’];
$your_name = $_GET[‘your_name’];
$your_phone = $_GET[‘phone’];
$your_email = $_GET[‘email’];
$your_message = $_GET[‘message’];
// change this to whatever you needed to be.
$recipient = ‘you@yourdomain.com’;
//you can make it say anything you want
$subject = ‘Someone has submited your form’;
// Do not edit anything else beyond this point
$headers .= ‘Content-type: text/html; charset=iso-8859-1′;
$content = "<html><head><title>Contact letter</title></head><body><br />";
$content .= "Company: <b>" . $your_company . "</b><br />";
$content .= "Name: <b>" . $your_name . "</b><br />";
$content .= "Phone: <b>" . $your_phone . "</b><br />";
$content .= "E-mail: <b>" . $your_email . "</b><br /><hr /><br />";
$content .= $your_message;
$content .= "<br /></body>";
// The mail() function allows you to send mail.
mail($recipient,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282E2C">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;
font-family:Tahoma;font-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeTo(300, 300)</script>
Put your e-mail address as shown in a video tutorial and then save this file. Place this contact.php file in the same folder where you have your SWF movie. That’s all!

{ 83 comments… read them below or add one }
the php file is real hard to read…
any way to email me a copy of this file?
thanx!!
Please email me a copy of the php file.
I would appreciate it greatly.
not a problem I will email you a copy… are you having a problem with your copy/paste with the code here?
if you guys find this script useful please make sure to give it a digg by clicking the digg button…. I really appreciate it! Also let us know what other scripts your looking for or any tutorial you think might be useful. Basically, tell us what you think.
Hey Collado,
Thanks for the wonderful script.
I have set up a form in flash and am testing the script now.
For some reason in the from and subject lines there is the following code
when the message is received by my mail program.
From:Kevin Daughtrykevin@godeep.org><TEXTFORMAT LEADING=\”2\”
Subject: from kevin@godeep.org
I have checked the script for errors and cannot find any.
My contact page is not live yet… it is located at www.gracenation.com/contact/contactform.html
good questions Kevin,
please take a look at the script one more time notice the mail() function atthe bottom that looks like this
mail($recipient,$subject,$content,$headers);
There are a total of four parameters being passed here and they are as follows…. $recipient,$subject,$content,$headers
The reason your getting that in the subject is because we never assigned a value to the first two variables namely “$recipient,$subject” hence your email client automatically gave then a value for you.. to fix it, simply add the following two lines of code anywhere before the mail() function as follows
// assigned recipient & subject values here
$recipient = ‘myemail@mydomain.com’;
$subject = ‘New Email Alert’;
make sure you replace myemail@mydomian.com with your own email and New Email Alert with the actual subject you want the email to have…
that should do it
hi guys,
here is a new post with lots more flash scripts thought it might be interesting http://foamers.net/blogger/archives/100 its called
Top 10 Flash Questions and Answers for Newbies & Wannabies
Hey Collado,
Im having a problem with my contact form. It gives me a
Parse error: syntax error, unexpected T_STRING in /mnt/w0708/d22/s36/b0248271/www/contact.php on line 11
Line11 is=$subject=”from”.$your_email;
Do u maybe know what is causing this error.
Please HELP!! =) Thanks
cant be totally sure but I would have to guess its got something to do with your syntax, most likely it means you left the semicolon off some place… probably on line 9 or 10
also does line 11 read
=$subject= “from”. $your_email;
with the equal sign at the beginning? if so get rid of the equal sign… it should just be $subject= “from”. $your_email;
I installed it on my website.
www.exca.be => contact
used vars:
lastname
firstname
email
message
Actionscript on button:
on (release) {
_parent.getURL(”http://www.exca.be/website/contact.php”,”_blank”,”GET”);
_parent.message=”Your message has been sent. Thanks for contacting!”;
}
contact.php:
http://www.exca.be/website/contact.php
Why wont it work? :(
Submit on your form and then look at the address bar of the contact.php page this is what I’m seeing
http://www.exca.be/website/contact.php?name=Name&shout=Message&
myData=myVariable%3D etc etc etc…
your passing all kinds of values there none of which the script is expecting (e.g name=Name shout=Message etc)
these are other variable in your flash movie… please see How to make a contact form work demo movie.
I don’t understand what you are trying to say Collado…
I followed that demo movie, but as my form is slightly different, i used different variables.
If I also changed these variables in the contact.php script just as I changed them in the flash file, so I guess that should be OK?
contact.php:
<?php
$your_lastname = $_GET[‘lastname’];
$your_firstname = $_GET[‘firstname’];
$your_email = $_GET[‘email’];
$your_message = $_GET[‘message’];
$recipient_email = “info@exca.be”;
$subject = “From ” . $your_email;
$headers = “From: ” . $your_name . ” \n”;
$headers .= ‘Content-type: text/html; charset=iso-8859-1′;
$content = “Contact letter”;
$content .= “Last Name: ” . $your_lastname . ““;
$content .= “First Name: ” . $your_firstname . ““;
$content .= “E-mail: ” . $your_email . ““;
$content .= $your_message;
$content .= “”;
mail($recipient_email,$subject,$content,$headers);
?>
Your message was sent. Thank you.
resizeTo(300, 300)
the script is fine thats not where your problem is… the variables get passed from Flash via GET through the query string… the query string is what you see on the browsers address bar when you press your submit button…
try it yourself, don’t enter anything just hit submit then look at the query string on the address bar of your browser in the contact.php page that pops up.
there you can see that the form is sending many different variables that the script does not need. this variables are being collected from your flash movie. so you need to find where they are in the FLA file and remove them…
Ok that way, I understand. They come from the shoutbox probably… but what if I don’t want to remove my shoutbox?
its hard to say without actually seeing the site FLA source file… if your interested in having us edit your FLA and installing the script for you please contact sales@foamers.net to ask for a quote
Sorry but can someone please explain what I am doing wrong? What has confused me is that the code on this page given to paste into your own document seems to be missing where you write your own email. I tried putting it in, but I continue to get an error on line 9? Anyone pleeeease?
<?php
$your_company = $_GET[‘company’];
$your_name = $_GET[‘your_name’];
$your_phone = $_GET[‘phone’];
$your_email = $_GET[‘email’];
$your_message = $_GET[‘message’];
$recipient_email = “info@svbc.org.uk”;
$subject = “from ” . $your_email;
$headers = “From: ” . $your_name . ” \n”;
$headers .= ‘Content-type: text/html; charset=iso-8859-1?;
$content = “Contact letter”;
$content .= “Company: ” . $your_company . ““;
$content .= “Name: ” . $your_name . ““;
$content .= “Phone: ” . $your_phone . ““;
$content .= “E-mail: ” . $your_email . ““;
$content .= $your_message;
$content .= “”;
mail($recipient,$subject,$content,$headers);
?>
Your message was sent. Thank you.
resizeTo(300, 300)
Your missing closing quotation mark in the $header looks like a typo cause you have a question mark… I made the required alterations and commented the script in the original post so it should be much easier now. Just copy and paste again. I also added the subject and the recipient variables. That should do it. If you find it helpful give it a digg
Can you tell me why my message is not being deliver to my email heres is the PHP, I’m using flash 8 I can send you my flash doc. my website is www.impactgraphics1.com
<?php
$your_name = $_GET[’name’];
$your_email = $_GET[’email’];
$your_message = $_GET[’message’];
$recipient_email = “impactgraphics2000@yahoo.com”;
$subject = “from ” . $your_email;
$headers = “From: ” . $your_name . ” \n”;
$headers .= ‘Content-type: text/html; charset=iso-8859-1′;
$content = “Contact letter”;
$content .= “Company: ” . $your_company . ““;
$content .= “Name: ” . $your_name . ““;
$content .= “Phone: ” . $your_phone . ““;
$content .= “E-mail: ” . $your_email . ““;
$content .= $your_message;
$content .= “”;
mail($recipient,$subject,$content,$headers);
?>
Your message was sent. Thank you.
resizeTo(300, 300)
I would have to guess is because you’ve made modification to the original script where you shouldn’t off…. Copy the script from the original post again (it had been updated) and change only the $recipient variable value and the $subject variable value as commented… if after this you are still having problems and you would like us edit your FLA and install the script for you please contact sales@foamers.net to ask for a quote
Thanks Collado, methinks I shall! However, I get this now:
Parse error: syntax error, unexpected ‘@’ in /home/fhlinux175/c/colourmafia.co.uk/user/htdocs/newsite/contact.php on line 10
Is it something to do with it asking me to convert it to UTF-8?
I do apologize I believe the problem all may be having is because of the single quotation marks as they have been interpreted by the code snippet above… all single quotation mark should actually look like this ( ‘text’ ) and not like this ( `text´ )
to avoid this problem please download the contact.php scrip directly here. this download is also available at the top of this page
Hi,
It doesn’t work for me: In Firefox it doesn’t work at all and in Explorer it does sends an Email but the email has only the fields names (”company:”,”name:”, etc) but no input.
I used the downloaded contact.php file and I’ve changed only the email address. I also made the FLA file like you did in the video demo. can you think of anything I do wrong?
Check the Action on the submit button…
_parent.getURL("contact.php", "_blank", "GET");
_parent.company = "Your Company";
_parent.name = "Your Name:";
_parent.phone = "Your Phone:";
_parent.email = "Your Email:";
_parent.message = "Your Message";
}
Does your code say ” _parent.” in front of the getURL function and each of the variables? Let me know.
Hi everyone just finished a new tutorial on Stylesheets, Flash and XML…. if you’ve ever wanted to have crisp, clean and elegantly styled text in Flash, then this is it http://foamers.net/blogger/archives/102
This is a great tutorial, thanks! I’ve been trying to get a form that came with a template to work properly, and this has been an immense help.
This is cool but is their a way to make like this search so when you type a word the definition would come out on the flash movie (I know this has nothing to do with contact form but please help me)
I created the contact page but its not working.Here are my codes.
Your message has been sent. Thank you.
Everything looks fine, and it opens the ‘Your message has been sent. Thank you.’ window, but it is not sending any mail to the $recipient. Any help would be gladly appreciated.
oops sorry. here they are.
$your_name = $_GET[’name’];
$your_email = $_GET[’email’];
$your_message = $_GET[’message’];
// email to send to
$recipient = “aslurpingape@hotmail.com”;
//email subject
$subject = “Westdojo Enquiry Page”;
// Headers and content (Default values - do not edit)
$headers = ‘Content-type: text/html; charset=iso-8859-1′;
$content = “Westdojo Enquiry”;
$content = “Name: ” . $your_name .”";
$content = “Email: ” . $your_email .”";
$content = “Message: ” . $your_message .”";
$content = “”;
mail($recipient, $subject, $content, $headers);
$sendStatus = “success”;
echo $sendStatus;
This does not look like the original script, download the script again and compare the two site by side. if your still having problem and would like to have us install and debug the script please contact us for a quote at sales@foamers.net
Hi,Collado
Maybe you can help me with a turorial Im searhcing for a while..I ahve to make a “search”funticon for a lash webiste wher the clients should be able to select the products.It should be smtg simple like to have a drop down menu.This searhc funciton should be connected somehow with a php file-This is the problem!!! I made search functions connecting html and php, but with flahs I can not find any tutorial…Please,help me!!! I have to deliever in 2 weeks my project!!!!
Thanks a lot!! Adriana
hi Adriana a case study like that would easily fill a whole chapter… what I can do is recommend this book “Advanced PHP for Flash”
Collado,
The script in the movie and the one at the top of the page are slightly different. I have tried both for my site contact form and neither work. The one from the video gets an email sent to me, but it does not have any return email or name only “from”. The one on this page does not even send an email to me. Here is the last code I tried:
<?php
$your_name = $_GET[’name’];
$your_email = $_GET[’email’];
$your_message = $_GET[’message’];
$recipient = “john@greatwritedesigns.com”;
$subject = ‘Someone has submited your form’;
$headers .= ‘Content-type: text/html; charset=iso-8859-1′;
$content = “Contact letter”;
$content .= “Name: ” . $your_name . ““;
$content .= “E-mail: ” . $your_email . ““;
$content .= $your_message;
$content .= “”;
mail($recipient,$subject,$content,$headers);
?>
Your message was sent. Thank you.
resizeTo(300, 300)
This is the Action script I put in the submit button:
on (release) {
_parent.getURL(”contact.php”, “_blank”, “GET”);
_parent.name=”Your Name:”;
_parent.email=”Your Email:”;
_parent.message=”Your Message”;
}
What am I doing wrong?
hi John,
its hard to say without really having access to your script as well as the fla file. if you would like to have us debug and install the script contact us at sales@foamers.net with your details so we can give you a quote. generally we can have this working for you within 24 hours.
i have setup the entire form and php code as stated on your website.
I receive the email but nothing from what i pop in the fields like name or message, get actually emailed.
all i get in the email after i fill out the form and click submit is
name:
phone:
email:
———-
message:
please help losing my hair!
cheers.
Hi,
I have also used your contact form and php script and am having the same problem.
I do receive an email with the correct subject, but the fields i filled in on the fla aren’t included in the mail. it looks like:
name:
phone:
email:
_______
Message:
I’ve checked the variables in the flash file, they are correct.
Any ideas?
Thanks
If I had to guess I’d say your variables are not being sent to the script from the fla, that or the PHP script variables are A. misspelled or B. don’t match the names of the variables being sent (e.g. $your_company = $_GET[’company’]; when the fla variable is actually named ‘company_name’ or the like )
On the other hand if you would like us to install the script for you our fee is $50, that includes both the scripts and any adjustments to the fla file making the form fully functional and testing it on your server (all fee payable upon agreement)
for more information please write to us at sales@foamers.net
http://info.template-help.com/after_sale_support/Working_with_Flash/Advanced/article7.html
Hi, I’m getting the following error:
Parse error: syntax error, unexpected ‘@’ in /home/www/the-engine-room/stevelauri/contact.php on line 9
Any ideas?
Here’s my php file:
<?php
$name = $_GET[‘name’];
$phone = $_GET[‘phone’];
$email = $_GET[‘email’];
$message = $_GET[‘message’];
// change this to whatever you needed to be.
$recipient = ‘steve@stevelauri.com’;
//you can make it say anything you want
$subject = ‘Email from SteveLauri.com’;
// Do not edit anything else beyond this point
$headers .= ‘Content-type: text/html; charset=iso-8859-1?;
$content = “Contact letter”;
$content .= “Name: ” . $name . ““;
$content .= “Phone: ” . $phone . ““;
$content .= “Email: ” . $email . ““;
$content .= $message;
$content .= “”;
// The mail() function allows you to send mail.
mail($recipient,$subject,$content,$headers);
?>
Your message was sent. Thank you.
resizeTo(300, 300)
yeah your header tag is missing a closing ‘”‘ currently it reads
// Do not edit anything else beyond this point
$headers .= “Content-type: text/html; charset=iso-8859-1?;
and it should actually be
// Do not edit anything else beyond this point
$headers .= “Content-type: text/html; charset=iso-8859-1″;
Dude,
I do not know wat happen to my flash, It cannot go live..
What happen?
at www.webswedo.com/red/contact.html
On the submit button,
on(release){
_parent.getURL(”contact.php”,”_blank”,”GET”);
_parent.name=”Name”;
_parent.phone=”Contact”;
_parent.email=”Email”;
_parent.message=”Message”;
}
whats wrong?
I copy the contact.php from above, some1 can teach me? how? :’(
or msn me? ahwee11@hotmail.com
for the life of me i cant get the contact form to work on this site. i applied the actions from the video, and edited/uploaded the contact.php page. i need help
my site is http://www.charismaprograms.com
if you would like us to install the script for you our fee is $50, that includes both the scripts and any adjustments to the fla file making the form fully functional and testing it on your server (all fee payable upon agreement)
for more information please write to us at sales@foamers.net
Hi, when I click the submit button it opens a new window and tries to download contact.php. It isn’t executing the contact.php but trying to download it. I am using a full flash site. Any help would be appreciated.
did you read the pink box a the top of this post?
Hi, how do you make a Bcc on in this php form?
are you asking how to send a CC or copy of of the message or do you actually want your email to be (BCC) hidden from the recipient? If on the other hand you simply want to send a verification respond to verify the authenticity of the email entered you could do as follows
// add this
$verifythis = $your_email;
// The mail() function allows you to send mail.
mail($recipient,$subject,$content,$headers);
// Now verify that this is the user correct email
mail($verifythis ,$subject,$content,$headers);
you might also want to content of verification respond email to be different maybe prompting the recipient to take some action and so on… the ski is the limit!
I AM HAVING THE SAME PROBLEM AS THE TWO PEOPLE ABOVE ME!!
I do receive an email with the correct subject, but the fields i filled in on the fla aren’t included in the mail. it looks like:
name:
phone:
email:
_______
Message:
THE VARIABLES ARE CORRECT AND THERE ARE NO MISSPELLINGS. THIS IS DRIVING ME CRAZY. ANY IDEAS?
Thanks
hi!
Is it necessary to use MySQL or other databases, or install any plug-ins or something else on the server to use this form?
I\’m looking for a contact form that runs without needing to install anything on the server.
Thanks!!!
all right it works!
Now.. I would like to know if it is possible to personalize the “sender” (with sender I mean the name visualized under “from”).
Now when I receive a mail from the form the sender is: “anonymous@localhost.com” , would it be possible to change it?
thanks!!!
P.S. amazing file! it works great
thank you! glad you like it… you can totally change the “from” simply…
Find this like
// change this to whatever you needed to be.
$recipient = ‘you@yourdomain.com’;
Add this beneath it
$from address = ‘From: you@yourwebsite.com’;
Find this line
// The mail() function allows you to send mail.
mail($recipient,$subject,$content,$headers);
Change it to say
// The mail() function allows you to send mail.
mail($recipient,$subject,$content,$fromaddress);
Now save your changes and upload the file and try it again.
Hey man thank you for being an amateur Philanthropist…. :)
Can you please tell me a link where I can make your tutorial more functional and powerful like adding an Anti-spam field and prohibiting the sender to click the submit button many times!
HELP!!!!
I made the contact form and was working perfectly fine until we launched the website. Now contact form is not working. I didn’t change a thing so I am not sure what’s wrong.
whats actually happening when your submitting? can you give us a link to the site, send me your FLA ( sales@foamers.net )file and email me your FTP info
When I hit the submit button I get the “message sent screen” but I am getting no emails. Please help before I pull the rest of my hair out!
Matt, I can install this script for you for as little as $80 a pop. So if you really want to make your Flash contact form work right now hop on over to the contact page and talk to me
Thanks a lot. Your script is working, I’have lost some days trying but with your example in 5 minuts I finished. Thanks again.
thank you Kris… I checked out the site, great job! the only thing I would try to change is the font size and clarity… check out my other post on Stylesheets, Flash and XML for Dummies… that might be helpful. Also don’t forget to subscribe to my feed and stay up to date on all our latest stuff…
hi, this form it works for php5? and do me a favor, can u send me the form.php thnx u
or u can post a zip, including the mail.php and a form fla. pls
You can find the php script right above along with everyone else, as for the fla file, what fla file? each individual website would have its own individual fla file… the whole purpose of being here is you have a fla file and you wish to make the contact form work.. the script will works on any flash form
Collado Help me. please why not work :( helpe me man. thx
first of all see the “how to make a flash contact form work demo movie” to get the submit button working properly…. then also take a look at your contact.php your using all sorts of uppercase variable names as in $_GET[’Nombre’] you might want to see if your flash also has that in uppercase etc. Also we removed the code you posted on the previews comment… PLEASE do not post your code unless we have actually requested that you do. thank! And as always should you wish to acquire more information about my own Flash customization services simply jump over to the contact form and let me know what you’re thinking.
Hi Collado,
I see that many people are having the same problem as mine.
The contact form will only work in Explorer… not Firefox or Avant.
Also, everything that I type in is not there when I receive the email.
Ok I found my bug and for all those who had the same problem, dont use the button from the Component library in Flash. You will have to make a custom one.
Everything will work even in different browsers.
Hi,
I used your contact form and php script and am having a little problem.
I do receive an email with the correct subject, but the fields i filled in on the fla aren’t included in the mail. it looks like:
name:
phone:
email:
I don’t think a message field came in either.
I’ve checked the variables in the flash file, they seem to be correct.
on (release) {
_parent.getURL(”contact.php”, “_blank”, “GET”);
_parent.company = “Your Company”;
_parent.name = “Your Name:”;
_parent.phone = “Your Phone:”;
_parent.email = “Your Email:”;
_parent.message = “Your Message”;
}
I see others had this issue but I did not see a resolution any ideas?
Thanks
try it without the _parent.company but rather with just company
let me know if fixes it
Hi Collado,
The code didnt come up with errors and it still sent but the contents did not arrive in the mail
Company:
Name:
Phone:
E-mail:
——————————————————————————–
I change the code to
on (release) {_parent.getURL(”contact.php”,”_blank”,”GET”);
company = “Your Company”;
name = “Your Name:”;
phone = “Your Phone:”;
email = “Your Email:”;
message = “Your Message”;
}
Thanks
git rid of _parent in the getURL also that should do it
Hi Collado,
The code didnt come up with errors and it still sent but the contents Still did not arrive in the mail
Company:
Name:
Phone:
E-mail:
——————————————————————————–
I changed the code to
on (release) {getURL(”contact.php”,”_blank”,”GET”);
company = “Your Company”;
name = “Your Name:”;
phone = “Your Phone:”;
email = “Your Email:”;
message = “Your Message”;
}
Thanks for trying to help me with this.
Any thing else you can suggest?
To Joe and Collado:
The problem that Joe is having was similar to mine.
The button you creat in Flash cant be from the component library.
Make a custom button and everything will work!
Matts
Thanks, I will Try that.
Matts,
I made my own button in flash, but that didn’t seem to work either.
Same Issue.
THANKS SOOOOOO MUCH FOR THIS TUTORIAL!!!!!!
I’ve been working this for about 8 hrs now…LOL
I took out a few lines I didn’t need as far as contact info. I’m getting similiar results as few above but with **’s
In my email I get:
Name: **
Phone: **
E-mail: **
Any Ideas?
Thanks!!!
Hello I am uploaded the contact page to my site but when I go ahead and hit submit i get this error in a new window
Parse error: syntax error, unexpected ‘@’ in /home/content/s/t/a/mydomain/html/magicx/test4/contact.php on line 10
I entered my email correct but it says this error
Love this tutorial… can you help…. here’s my error
Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home/allinwhi/public_html/winknsmile/contact.php on line 2
Parse error: syntax error, unexpected T_STRING in /home/allinwhi/public_html/winknsmile/contact.php on line 2
Hi Natalie,
Messages like syntax error, unexpected T_IF, syntax error, unexpected T_STATIC, and so on are admittedly quite cryptic. It means that the PHP interpreter found an a reserved word someplace that it didn’t expect it. (Which word? whatever comes after the underscore. So if the message is syntax error, unexpected T_STRING, look for some text like $myvariable = “mytext”.)
Frequently, this means that the previous program element (assignment statement, if statement, echo, whatever) wasn’t finished/closed correctly. So you’ll wan’t to look for a missing “;” at or above line 2 of contact.php.
Missing Semicolon Example
WRONG
if($bar == $baz)
{
// do something…
}
RIGHT
if($bar == $baz)
{
// do something…
}
good luck!
Same problem as everyone else, sends the email perfect but no content!
Only subject headers.
If something else needs to be changed please add it to the tutorial.
Looks like a greate tutorial but like many others i cannot get it to work. E-mail is sent but no content. I check all the names and spelling. Any suggestions?
Thanks Collado,
at first I was not getting any input in the email
Name:
Email:
——————
Message:
but then I tried your fix- removing the _parent as stated above
works now! Just in case you thought it was bad advice-
Hi Collado,
This is a brilliant script and so easy to set up. I got mine working first time.
I have 2 quick question. When the form is emailed back to me, the conents appear in a light green color. I want it to show in black so it is easier to read.
I played around with the tag but could not get it to work.
Also, I tried your suggestion above about adding some lines to chnage the “from” address, but could not get that to work.
My email is coming from CGI-Mailer [cgi-mailer@kundenserver.de]
Many thanks for any help.
I would like to try to submit the form myself, is there a link you can show me? My guess is that within flash itself the form field text color property is green, thus you get the green, otherwise maybe under the body tag you can try looking for a font tag or style tag with a color attribute… good luck also don’t forget to subscribe to my feed and soon our newsletter, so you can stay up to date on this thread and other useful stuff
Leave a Comment