Search  

FLASH EMAIL FORM

HomeBrowse CategoriesFlashApplications and UtilitiesUtilitiesFlash Email Form

My email form features full validation and comes with a php file which will collect all the submitted information…even the user’s ip address. The Flash file is well commented and you only need to edit two lines of code in the php file.

Posted about 1 year ago

Cool thanks works fine, good instructions too!!

Dean :)

Posted about 1 year ago

Thank you so much.

Posted about 1 year ago

Hey there Jamie. Just purchased your file and its great! I have a question though…I already have a flash site I want to integrate this into. I tried inserting this in an empty movie clip, but when i publish, it switches back and forth between each frame of the form.fla. Is there a way to insert this file and have it work correctly or am I just dreaming?

Posted about 1 year ago

Hello, and thank you very much for purchasing my file. Try using this actionscript:

_root.createEmptyMovieClip(“form”, 1); form._x = 0; form._y = 0; _root.loadMovie(“form.swf”;);

Posted about 1 year ago

It looks like the actionscript didn’t format correctly. You may email me at webmaster@michelsstudio.com and I’ll be happy to provide you the container.fla free of charge.

Posted about 1 year ago

thanks! I sent you an email

Posted about 1 year ago

great looking form, could i easily add more fields?

thanks

Posted about 1 year ago

Thank you for your question. As long as you have an intermediate grasp of both Flash and PHP , it would be a cinch to add more fields.

Posted about 1 year ago

hi

I can not type in an underscore or a dash in my form.. Can you help?

Posted 11 months ago

ps also i can not type any number and character on the top line

Posted 11 months ago

Hello Joel, I’m sorry for not responding to your question sooner. You may email your .fla to webmaster@michelsstudio.com and I’ll be happy to adjust that for you.

Posted 11 months ago

Do this form work with special carachters ,; ã ç á ó ü ?

Can I change the color of background and boxes containers.?

Can I make it open inside my home page?

Thanks!

Posted 9 months ago

—Sure, you can use any type of font you wish. There are several lines of actionscript which I added as a kind of freebie to buyers which actually restrict certain characters. So, in your case, with your special characters…all you would have to do is erase those lines of actionscript or customize them to your liking. —You can change the color of both the background and box containers. —You can open it inside your homepage just as you would embed a standard .swf —Make sure you have PHP support on your server.

Posted 9 months ago

how do you remove the drop shadow from the boxes?

great file

Ryan

Posted 8 months ago

At the top of your screen click “Windows,” then “Properties” and then “Filters.”

Posted 8 months ago

Thanks a lot. Good to go

Posted 8 months ago

Thanks this was quite easy to implement and well commented. 5 stars!

Posted 7 months ago

excellent job.. very easy to setup and, modify … thanks for the online instructions..

Posted 6 months ago

My absolute pleasure and thank you for your kind remarks.

Posted 6 months ago

Can I import th swf file into swihmax2?

Posted 6 months ago

Hi Jamie,

Your file looks very straight forward to setup and you actually made me learn something new, since I had no clue of what CHMOD was.

I haven’t been able to make it work, though. I set the chmod to 777 using WS_FTP PRO , but the file doesn’t seem to take it after clicking OK. There is a note in the properties panel, next to the field for the number (777) that reads: “Only applicable on Unix hosts”.

Would this be the problem? My hosting accounts offer windows and Linux OS servers, but didn’t see Unix mentioned anywhere…

I had the hosting with Windows OS; just changed it to Linux to see if that solves the problem.

Also, I didn’t see an answer for the posting about not being able to type numbers, etc. I’ll follow your directions in your answer to RDINZTV but, if that is not the path, would you please give me a hand with it?

Thanks a bunch. Take care,

Nomar

Posted 6 months ago

Hi again,

Yes, it works fine on the Linux server. Great! ;o) Will check on the numbers later… Take care,

Nomar

Posted 6 months ago

Pbohorq: I would highly doubt that this type of file could be imported into Swish, but then again I haven’t used that program in years.

Nomar: Thank you for your questions. I used to be an ASP man myself, but Linux just rules doesn’t it! With regard to the numbers, you will find a line in the actions panel which reads something like field4.restrict “1-100” That should actually be changed to “0-9” if you want to completely restrict numbers from being entered into the textfield. If you run into any further problems, don’t hesitate to email me from my website at www.jamiemichels.com

Best Regards, Jamie Michels

Posted 6 months ago

Hey Jamie,

Being busy and out of town. About the numbers, what I actually want is to allow users to include numbers in their emails.

Would deleting that line of script or the text between “quotes” do this? I’ll be back in a couple of days and will try that. Thanks a bunch for your quick reply. Take care,

Nomar

Posted 6 months ago

Normar,

Deleting the entire line for each textfield will allow your users to input any characters they wish. This piece of code originally confused alot of people who have been kind enough to purchase my files, but it’s really just a nice add-on which Macromedia released with version 6 to resctrict certain symbols from being entered. I know that it bugs alot of people, but it’s a nice little security feature in my opinion. Anyway, if you run into any problems with the actionscript when you return or want the updated copy, simply email me from www.jamiemichels.com

Jamie Michels

Posted 6 months ago

Hey,

Thanks a bunch; I’ll try that when I get back. Take care,

Nomar

Posted 6 months ago

Can you give me an example of this:

“Instruction 1: Open the actions panel on the main timeline and on line 19 change the path to fit form.php on your server.”

I tried the following:

mydomain.com/beta/form.php beta/form.php form.php

None of them is working.

Thanks!

Posted 5 months ago

You may upload the php file to any directory. An easy example would be: http://www.yourdomain.com/form.php But if you are still experiencing problems make sure that you have done the following: 1. Chmod the php file to 777 and 2. Change the path of the actionscript to the url where your php file is stored.

Posted 5 months ago

Hello! I cannot type hyphen, underscore nor numbers on the name or subject line, how do I fix that?

Posted 4 months ago

It’s very simple. Notice that I have assigned the three textfields their own instance names. To enable all characters, simply delete lines such as these:

textfield2.restrict = “A-Z, a-z, 0-9, @, .”;

Posted 3 months ago