Jump to content

eric200678

Member
  • Posts

    8
  • Joined

  • Last visited

Everything posted by eric200678

  1. I watched that video and i found it very well lets just say it looks to much like vista hell than a working os and not to mention very little back end changes that i saw. Personally this is windows last try at an OS if its not right i feel that most people will jump to mac or go back to XP. i use XP and never made the jump to vista i used it once on a friends computer and hated it it was a maze and it was telling me wrong comand. anyways good luck to anyone who uses windows 7.
  2. try save as when you download i ran into that once before and that helped me
  3. I write flash and still have google seeing it just fine it can see my urls and my text. may i ask how you are saving your files?
  4. eric200678

    Flash form 2

    the problem is that im trying to get php to see radio boxes that i made in flash. The only error is that i cant recive the email.
  5. hello i would to know how to detect a button i made as a movie clip as to witch frame is on. Also i need to send this to a php file for emailing. thanks in advance
  6. eric200678

    Flash form 2

    hello i got a problem with my php linking with flash i belive its in php but not sure if my actionscript is messed so here is both: PHP: <? $ToEmail = "blank@unknown.com"; ##$ToName = "Unknown"; $ToSubject = "Unknown"; $EmailBody = "Sent By: $userName\nSenders Email: $userEmail\nSenders age: $ageGroup\n\nSenders OS: $OS.OSmac.\n"; $EmailFooter="\nThis message was sent by: $FirstName from $REMOTE_ADDR If you feel that you recieved this e-mail by accident please contact us at www.earcaddy.com"; $Message = $EmailBody.$EmailFooter; mail($ToName." <".$ToEmail.">",$ToSubject, $Message, "From: ".$userName." <".$Email.">"); Print "_root.Mail.EmailStatus=Complete - Your mail has been sent"; ?> my action script is on a button so here it is as well: on (release) { if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") == -1) { EmailStatus = "Please enter a valid E-mail address"; } else if (!Name.length) { EmailStatus = "Please Enter your name before Sending"; } else if (!ageGroup.length) { EmailStatus = "Please bite me"; } else if (!OS.OSmac.getValue().length) { EmailStatus = "Please bite me"; trace(sendVars.send("test.php", "POST")); } loadVariablesNum ("test.php", "0", "Post"); EmailStatus = "Message Sent Successfully! We will reply shortly."; } thanks for the help
  7. ok i figured it out it was in the php <? $ToEmail = "yourname@yourname.com"; ##$ToName = "unknown"; $ToSubject = "Question/Comment"; $EmailBody = "Sent By: $Name\nSenders Email: $Email\nSenders Subject: $Company\n\nSenders Company: $Company\n\nSenders Address: $Address\n\nSenders City: $City\n\nSenders State: $State\n\nSenders Zip Code: $Zip\n\nSenders Country: $Country\n\nSenders Title: $Title\n\nSenders Phone: $Phone\n\nSenders Fax: $Fax\n\nSenders Estimated: $Estimated\n"; $EmailFooter="\nThis message was sent by: $FirstName from $REMOTE_ADDR If you feel that you recieved this e-mail by accident please contact us at www.earcaddy.com"; $Message = $EmailBody.$EmailFooter; mail($ToName." <".$ToEmail.">",$ToSubject, $Message, "From: ".$FirstName." <".$Email.">"); Print "_root.Mail.EmailStatus=Complete - Your mail has been sent"; ?> it was in the structure of the $Body part guess i got it wrong lol thanks for the help anyway:D:lol:
  8. helo im new to this but i have a problem it contains php and actionscript calling my pvp file was wondering if anyone could help? <? $ToEmail = "test@yourname.com"; ##ToName = "unknown"; $ToSubject = "Test file for emails"; $EmailBody = "Sent By: $Name\nSenders Company: $Company\nSenders Email: $Email\n\nSenders Address: $Address\n\nSenders City: $City\n\nSenders State: $State\n\nSenders Zip Code: $Zip\n\nSenders Country: $Country\n\nSenders Title: $Title\n\nSenders Phone: $Phone\n\nSenders Fax: $Fax\n\nSenders Estimated: $Estimated\n"; $EmailFooter="\nThis message was sent by: $Name from $REMOTE_ADDR If you fell you got this e-mail by accdent please contact us at www.yourname.com"; $Message = $EmailBody.$EmailFooter; mail($ToName. " <".$ToEmail.">",$toSubject, $Message, "From: "$Name." <".$Email.">"); Print "_root.Mail.EmailStatus=Complete - your mail has been sent"; ?> i use this so my flash page can send it to an email i have gotten it to work on smaller forms but now im wondering if im working it wrongor what here is the actoinscript to call it on (release) { if (!Email.length || Email.indexOf("@") == -1 || Email.indexOf(".") == -1) { EmailStatus = "Please enter a valid E-mail address"; } else if (!Company.length) { EmailStatus = "Please Enter your Company Name before Sending"; } else if (!Name.length) { EmailStatus = "Please Enter your name before Sending"; } else if (!Estimated.length) { EmailStatus = "Please enter your current estimated income"; } else if (!Address.length) { EmailStatus = "Please enter your address"; } else if (!City.length) { EmailStatus = "Please enter your City"; } else if (!State.length) { EmailStatus = "Please enter your State"; } else if (!Zip.length) { EmailStatus = "Please enter your Postal Code"; } else if (!Country.length) { EmailStatus = "Please enter your Country"; } else if (!Title.length) { EmailStatus = "Please enter your title"; } else if (!Phone.length) { EmailStatus = "Please enter your business phone number"; } else if (!Fax.length) { EmailStatus = "Please enter your fax number"; } else { loadVariablesNum ("orderform3.php", "0", "Post"); EmailStatus = "Message Sent Successfully! We will reply shortly."; } } thanks a bunch
×
×
  • Create New...