Send mail script - in Flash8

5 replies
Neeed help with this ASP code Flash8, when clicked it does not send the mail Current code:
Contact Page - actions buttons;


reset button:


on (release) {
a1.gotoAndPlay(5);
}

Submit button;

on (release) {
getURL("http://www.nwl.net/contact/contact.aspx", "POST");
}

Resumee Submission:

on (release) {
getURL("http://www.nwl.net/contact/employment.aspx", "_blank", "POST");
}

Any help?? many many thanks to the Brave-Hearts..:confused:
#control #flash8 #script #sound
  • Profile picture of the author aesoft
    If you don't need to actually post anything to the page, try the following:
    Note: At the least, add the target name (i.e. "_self") before "POST".
    Code:
    getURL("http://www.nwl.net/contact/contact.aspx", "_self");
    Code:
    getURL("http://www.nwl.net/contact/employment.aspx", "_blank");
    {{ DiscussionBoard.errors[2673123].message }}
    • Profile picture of the author clickone
      Originally Posted by aesoft View Post

      If you don't need to actually post anything to the page, try the following:
      Note: At the least, add the target name (i.e. "_self") before "POST".
      Code:
      getURL("http://www.nwl.net/contact/contact.aspx", "_self");
      Code:
      getURL("http://www.nwl.net/contact/employment.aspx", "_blank");
      Hey <thank You for the reply, I tried them still not working! originally they were working, I haven't changed any programing, is't possible that something is wrong with the asp script on server?
      {{ DiscussionBoard.errors[2678485].message }}
      • Profile picture of the author aesoft
        Originally Posted by clickone View Post

        Hey <thank You for the reply, I tried them still not working! originally they were working, I haven't changed any programing, is't possible that something is wrong with the asp script on server?
        Yes, it can be... however there could be a number of different things going on. It's difficult to say.

        Are the ASP scripts your (that you control and can access) or from another site/service?

        If they are your scripts, have to tested to see if the parameters are being passed and received properly?

        If you like, you may PM me a test link and I'd be happy to follow the process and try to let you know what's happening behind the scenes that could possibly causing this.

        You could also obtain software yourself to do it. There are a couple out there, however I've only worked with Charles Debugger:
        http://www.charlesproxy.com/

        There is a free trial and it's like $50 to purchase for a single license... and also includes a Mozilla FireFox Add-On.

        This tool has saved me many an hour. Personally, I find it very valuable and don't hesitate to recommend to anyone doing web development.
        {{ DiscussionBoard.errors[2678562].message }}
        • Profile picture of the author clickone
          Originally Posted by aesoft View Post

          Yes, it can be... however there could be a number of different things going on. It's difficult to say.

          Are the ASP scripts your (that you control and can access) or from another site/service?

          If they are your scripts, have to tested to see if the parameters are being passed and received properly?

          If you like, you may PM me a test link and I'd be happy to follow the process and try to let you know what's happening behind the scenes that could possibly causing this.

          You could also obtain software yourself to do it. There are a couple out there, however I've only worked with Charles Debugger:
          Charles Web Debugging Proxy &bull; HTTP Monitor / HTTP Proxy / HTTPS & SSL Proxy / Reverse Proxy

          There is a free trial and it's like $50 to purchase for a single license... and also includes a Mozilla FireFox Add-On.

          This tool has saved me many an hour. Personally, I find it very valuable and don't hesitate to recommend to anyone doing web development.
          Thamks a million.; here is a free link to charles download: Download: 14.45 MB
          CWDP.v3.5.1_iNViSiBLE_www.dl4all.com.rar download for free on file share letitbit.net
          {{ DiscussionBoard.errors[2678849].message }}
        • Profile picture of the author clickone
          Originally Posted by aesoft View Post

          Yes, it can be... however there could be a number of different things going on. It's difficult to say.

          Are the ASP scripts your (that you control and can access) or from another site/service?

          If they are your scripts, have to tested to see if the parameters are being passed and received properly?

          If you like, you may PM me a test link and I'd be happy to follow the process and try to let you know what's happening behind the scenes that could possibly causing this.

          You could also obtain software yourself to do it. There are a couple out there, however I've only worked with Charles Debugger:
          Charles Web Debugging Proxy &bull; HTTP Monitor / HTTP Proxy / HTTPS & SSL Proxy / Reverse Proxy

          There is a free trial and it's like $50 to purchase for a single license... and also includes a Mozilla FireFox Add-On.

          This tool has saved me many an hour. Personally, I find it very valuable and don't hesitate to recommend to anyone doing web development.

          Hello James,
          It was an error in the aspx script on server, i flush it and reloaded a clean copy, it is working fine now. Thanks very much for the effort.
          Kindest regards,
          Clickone
          {{ DiscussionBoard.errors[2680292].message }}

Trending Topics