Jump to content

miuuzhun

Members
  • Posts

    5
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.regencytravelinc.com

Profile Information

  • Interests
    Frisbee, school and just recently web design to boot!<br />Music also deserves a place among those above.

miuuzhun's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. yeah i figured it out - thanks
  2. I looked around for information and came up with this but it will not work either: // Submit Button action submit_btn.onRelease = function() { //Add Path of the php file feedbackpath = "mailto.php"; // str1 = email.indexOf("@"); str2 = email.indexOf("@")+1; str3 = email.charAt(str1+1); str4 = email.lastIndexOf("."); str5 = email.charAt(str4+1); len = length(email); counter = 1; flag = 0; while (Number(counter)<=Number(len)) { Char = substring(email, counter, 1); if (Char ne "@") { flag = Number(flag)+1; } counter = Number(counter)+1; } } submit_btn.onRelease = function () { if (flname_txt.text == "" || email_txt.text == "" || themessage_txt.text == "" ) { status_txt.text = "Please complete the entire form ..."; } else { status_txt.text = ""; loadVariablesNum(feedbackpath+"?name="+name+"&email="+email+"&feedback="+suggestion, 0); gotoAndStop(63); } }; any suggestions would he helpful
  3. Hello, I have constructed the entire form within flash and set up the following function for sending the form: function sendForm () { my_lv = new LoadVars(); my_lv.flname = _parent.name_txt.text; my_lv.email = _parent.email_txt.text; my_lv.specialist = _parent.specialist_txt.text; my_lv.themessage = _parent.message_txt.text; my_lv.send ("??????", "???????"); nextFrame (); } I dont know to put for the bold ?'s If anyone could help Id really appreciate it! Thanks
×
×
  • Create New...