ActionScript 2.0 :: Contact Form - Checking The Fields
Aug 5, 2005I wanted to make a contact form which checks all the fields to see if they are empty or have their defualt values still, code is as follows.. but it doesn't work:
[Code]....
I wanted to make a contact form which checks all the fields to see if they are empty or have their defualt values still, code is as follows.. but it doesn't work:
[Code]....
I have a contact form which works correct, however I want to add two non required fields in the AS. I can't get it to work.The two fields are company_name and web_name (I have added these files in the reset function below), these are not required to be filled out.I can't get it to work so that they are not required to be filled out at the submit function.[code]
View 4 RepliesI have here a nice contact form. The only problem I got is that I would like to have the field names (name, e-mail, telephone), displayed inside the right field, (so when the user clicks inside, the text would disappear automatically) in stead of displaying the names next to the fields. My first tough was to write inside each field, in flash the field names, and it was ok for the first look. But the user needs to delete first the field names like "name" from the input box, in order to enter his own. How could I make these field names automatically dissapear when the user clicks inside a text box?
The code:
stop();send_btn.addEventListener(MouseEvent.CLICK, submit);
function submit(e:MouseEvent):void{var variables:URLVariables = new URLVariables();
variables.fromname = name_txt.text;
variables.fromtel = tel_txt.text;variables.fromemail = email_txt.text;
variables.frommessage = message_txt.text;
[Code] .....
the source files work perfectly when I upload them to my server - but when I insert the form into my flash website - I am unable to receive the contact email at all. The problem must be with the flash file becuase I have not altered the php (except to send to my email)
I am using Flash CS3 (but publishing for action script2) I have double checked all my input field sare named correctly with var_names that match the php code. The form fields have been created as a moviclip named "form" and the following action script attached:
[Code]....
I'm developing a flex application with 4 tabs. When the user switches a tab I want to reset the previous tab to its initial state. Also I need to alert the user, if he hasn't saved the changes he made if any, will be lost.I'm planning to set a variable in the Model, and set/reset it if any change happens in a field under a tab. But how do I monitor this? Is there any listener available for this?Also how do I check and reset the state of the previous tab? The contents that come under the tab is from components only.
How do I check if the user has made any edits in the current tab? Some fields are generated dynamically too.I'm calling a function in the onchange event of TabNavigator and asks the user if he really want to switch the tab.I want the other tab to load its contents only if the user clicks Yes to the Alert box I'm popping up. But now the confirmation box pops up, and the contents are loaded into the other tab and if the user clicks No it goes back to the other tab. How do I prevent the action of loading the contents of the other tab at all till the user presses Yes?
Just wondering where I find a list of what can be error checked in input text fields?I'm looking for things like...- checking that letters and not numbers are entered- checking that an entered number is in a certain range
View 2 RepliesI'm creating a form in Flash MX and I need to created a script that check if the two passwrod text intup field are the same or not, if they are the same it will go to one frame and is they don't match it will go to a diferent frame. I need to created another script that will check if the text input field for the email has the symbol @ and .com, if this is true or false it will go to one frame or another.
View 1 RepliesI am just trying to check the contents of text field that the user can enter text into.
Here's the code:
btn_check.addEventListener(MouseEvent.CLICK, checkAnswer);
function checkAnswer(evt:MouseEvent):void {
if (answer.text=="48%") {
messageBox.text="CORRECT";
} else {
messageBox.text="INCORRECT. TRY AGAIN.";
}}
I am really in trouble with flash forms and need help please. Ive been trying to get a contact form working for a few weeks but have had no luck.Below is the code I am putting in to the flash form and php file.(this is the code I have put for the send Button)
on (release) {
if (name eq "" or subject eq "" or message eq "" or email eq "") { stop(); } else { loadVariablesNum("form.php", 0, "POST"); gotoAndStop(2); }}
(this is the code I have put for the clear Button)
on (release) { name = ""; subject=""; message=""; email="";}
(And this is the php file i created in dreamweaver and saved it as form.php)
$to = "your_email@email.com"; $msg = "$name
"; $msg .= "$message
";
mail($to, $subject, $msg, "Message From: Online client
Reply-To: $email
");
?>
I have uploaded the swf file and php file on the server but my form is still not working by sending the information to my email.
I created a simple web site in flash cs4 with a contact form, however, when I press submit, no email is sent even though my site says it was successfully sent.
Here is my actionscript and PHP:
function submit(e:MouseEvent):void{ var variables:URLVariables = new URLVariables(); variables.fromname = nameText.text; variables.fromemail = emailText.text; variables.frommessage = messageText.text; var req:URLRequest = new URLRequest("contact.php"); req.data = variables; req.method = URLRequestMethod.POST; var loader:URLLoader = new URLLoader(); loader.dataFormat = URLLoaderDataFormat.VARIABLES; loader.addEventListener(Event.COMPLETE, sent);
[code]....
I have a request to create a contact form within one of our existing Flash sites, [URL] (password is "insight"). I can't use PHP because our server doesn't support it (long story, my company has very tight restrictions on what they'll support due to government guidelines on security online).
All the searches I've seen use PHP to accomplish this, so I'm hoping someone knows how to do this using JavaScript.
Is i can make contact form uisng AS 2.0 or AS 3.0 ?
View 2 RepliesI followed Lee's contact form tutorial and was able to have a successful contact form work when I test movie in Flash. Once I uploaded the swf and html to my server, I can not get it to work online. Here is a link to the page in question... [URL]
View 2 RepliesI'm using Flash CS3 with AS2 and have been trying to set up a basic contact form and nothing seems to work. I used this [Url]to create the AS code for the send button for my form + the php code as well from this Kirupa link.I'm being hosted by Godaddy with the linux server with the email being sent to...When I fill out the form and submit - nothing is recieved in my inbox.Having tested the forwarding from Godaddy to yahoo - does work!
View 6 RepliesI am wondering if it is possible to create a contact form in AS3 without using PHP? The reason is because I am planning to create a co-op portfolio and host it on my university file space. The problem is that the university server doesn't support PHP, or other server side scripts
View 4 RepliesI am wondering if it is possible to create a contact form in AS3 without using PHP? The reason is because I am planning to create a co-op portfolio and host it on my university file space. The problem is that the university server doesn't support PHP, or other server side scripts. Is this still possible?
View 2 RepliesI am creating a contact form and I have completed the form in flash.How do I get flash to talk to php so that when a user clicks on the submit button it will send the data via php to an email account. Right now I have trace functions that are reading the input in flash. I just need to figure out how to communicate to php. It would be a bonus if I the input text can check to make sure the email is a valid email.
View 2 Repliesi am trying to edit flash site , i had finish all edits i want except
1- the menu in flash i don't know from where i can change the words which is in the menu
2- i don't know also from where i can setup the contact form to receive the messages from people ( put my e-mail and wait , set it up )
The contact form doesn't seem to sendI'm not sure where the problem is but i have tried to attach all the relevant files (i might of missed something). I don't even know where to start The email i'm trying to send to at the moment is redpandadesign@gmail.com but that will change to info@pedrovirgil.net once i have it working.
View 7 RepliesI am wondering if it is possible to create a contact form in AS3 without using PHP? The reason is because I am planning to create a co-op portfolio and host it on my university file space. The problem is that the university server doesn't support PHP, or other server side scripts. Is this still possible?
View 3 RepliesI have created a contact form with different areas of information available. I need to know how to make it work now. I want to be able to click the "submit" button and have it send the information supplied in the text boxes to my email address.
View 1 RepliesI'm trying to add a contact form to the end of a video. I'm assuming this would be fairly simple with flash/AS, but I'm not incredibly accustomed to itI have some flash and AS experience, so I should be able to handle it. But I would love a quick tutorial to point me in the right direction.
View 12 Repliesflash contact form will only accept certain keys, Like zxvywghjk.. and number keys will not type into it
View 3 RepliesI am trying to write a contact form.It consists of Textfields.I am new to Actionscript so I createdthem by placing each field on a form in Frame 1 of a layer called data_fields.Because it is long I am just going to place part of it in the forum.If anyone can help and needs more information let me know.The very first thing I do is execute a function to init the fields.
Example: FullName.text = ""; FullName.background=true; FullName.backgroundColor=0xffffff; . . Comments.backgroundColor=0xffffff;Then:
FullName.onSetFocus = function(oldFocus:Object){ FullName.background=true;[code].....
The contact form isn't work and message isn't send.
nametxt.text = eventtxt.text = reviewtxt.text = "";
sendbtn.addEventListener(MouseEvent.CLICK, bsend);
clean_btn.addEventListener(MouseEvent.CLICK, clean);
var timer2:Timer;
var var_load2:URLLoader = new URLLoader;
[code]....
This code is used for "review" (without e-mail).
I'm working on a flash template from templare monster. The thing is that when i open the .HTML file of the templare (which call for the .swf file) everything works fine. Even the contact form. But when i open the .fla file And wihtout make changes i export the .swf ( or publish it) everything works cine except the contact form. And with that i mean i cant write in it. Even i cant write numbers.The files of configuration And structure(.XML) aré loares properly And the contact (php & asp) files too. [URL]
View 1 RepliesI recently bought a flash template from flashden and the authors support is a bit slim so i thought i'd post it here.
There is one flash file and it has a contact form. They are sitting in a subdirectory on my website [URL] The contact form has a button and the action script is as follows
on (release) {
//Localise the needed variables
sender_mail = this._parent.Semail.text;
sender_name = this._parent.Sname.text;
[Code].....
Do you know any good and mainly working AS3 contact or email form?
View 2 RepliesI use an xml flash website and in it there is a contact form. The form works just fine, but when i fill in the info with greek characters, at the incoming mail i see squares and question marks(unicode problem). For this form i use these files:[code]Should i perhaps insert some code at .fla to make the greek characters at incoming emails appear?
View 0 RepliesI spelled something wrong? The input logic works... here is my form when I comment out the code in sendMessage...however, when I leave the code in sendMessage in it doesnt work.leSigh... I was hoping I could rig this up right, but alas....rrorsQuote:
Line 1641119: Access of possibly undefined property variables through a reference with static type flash.net:URLRequest.
Line 1661136: Incorrect number of arguments. Expected 1.
[code]......