CAPTCHA in Flash Contact form

Hello every one.
I wonder if anyone have worked with CAPTCHA in contact form, it's will be great for anty spam. If some one have a template or a solution for this please write here or PM
Kind regards,
Alexei

http://www.google.com/search?hl=en&source=hp&q=flex+captcha&meta=&aq=f&oq=
http://www.google.com/search?hl=en&q=flash+captcha&aq=f&oq=&aqi=g1g-m1

Similar Messages

  • Flash contact form key issue

    Hi my flash contact form will only accept certain keys, Like zxvywghjk.. and number keys will not type into it any ideas???
    motionstills.co.uk

    Forms in Flash use Input text objects. You have to embed the font or fonts that you want to use for those text objects. It sounds like either you embedded a font that doesn't contain a full set of glyphs or that a restricted set of glyphs was set in the Font Embed window.

  • Using PHP with Flash (contact form)

    I am trying to get a contact form on a flash site to work and
    for some reason the PHP isn't forwarding the message to my email.
    Below is the flash code I have used as well as the document I have
    saved as contact.php. Thank you so much for the help. This is the
    last thing I need to complete for the site and I just can't seem to
    get it right. Thanks.
    Flash Code For the Submit Button:
    onClipEvent (enterFrame) {
    if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
    if (this._currentframe<this._totalframes) {
    this.nextFrame();
    } else {
    if (this._currentframe>1) {
    this.prevFrame();
    on (release) {
    this._parent.getURL ("contact.php","_blank","GET");
    this._parent.name = "Your Name:";
    this._parent.email = "Your Email:";
    this._parent.phone = "Your Phone Number:";
    this._parent.text4 = "e-mail:";
    this._parent.message = "Your Message:";
    Here is what I have for Contact.php:
    <?php
    $your_name = $_GET['name'];
    $your_email = $_GET['email'];
    $your_phone = $_GET['phone'];
    $your_message = $_GET['message'];
    $recipient_email = "[email protected]";
    $subject = "from " . $your_email;
    $headers = "From: " . $your_name . "<" . $your_email .
    ">\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1';
    $content = "<html><head><title>Contact
    letter</title></head><body><br>";
    $content .= "Name: <b>" . $your_name .
    "</b><br>";
    $content .= "E-mail: <b>" . $your_email .
    "</b><br><hr><br>";
    $content .= "Phone: <b>" . $your_phone .
    "</b><br>";
    $content .= $your_message;
    $content .= "<br></body></html>";
    mail($recipient,$subject,$content,$headers);
    ?>
    <html>
    <body bgcolor="#282E2C">
    <div align="center"
    style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
    Your message was sent. Thank you.
    </div>
    </body>
    </html>
    <script>resizeTo(300, 300)</script>

    well...that's true..I wanted "name" to be cleared when
    clicked...this version I found doesn't clear "name" when clicked,
    but it needs selected and erased manually...anyway..it's better
    then nothing...
    Reason I want this is because I'm using a design that is not
    giving me much space and I have to trick the low space with this
    option.
    If you want I can send you the fla to get a better
    picture...I believe you deserve it :)

  • Captcha Module in Contact Form

    Is there a technical reason that the Captcha Module only works with Business Catalyst or is it an Adobe marketing decision to limit its use to BC, as it did the Contact Form itself until the current version?
    I have a site developed in Muse running on a client's Mac OSX 10.8 Server with a contact form in it that is generating some robot-created  spam messages.

    The decision to intially release Muse Forms as a BC only feature, and the decision to only support CAPTCHA on BC were both because of technical issues.
    BC already had Form processing code, so Muse took advantage of that to deliver Forms. BC forms already had support for CAPTCHAs, so we added that to Muse as well.
    Customers requested forms that worked on other web hosts, so the Muse team built a form processing solution using PHP which works on most web hosts. It's additional work to make CAPTCHAs work on other web hosts, and would be more difficult than building simple form processing, so Muse forms hosted not on BC don't have CAPTCHA support yet.
    Muse forms hosted not on BC do attempt to do some throttling of form submissions based on the IP address of the submitter to attempt to limit spam submissions somewhat.

  • Flash Contact form for beginner

    Hello,
    I have been searching online for a tutorial to create a contact form on my flash website. I am using Flash CS3 and ActionScript 3. I am not fluent in ActionScript. I was looking to copy and paste the code and change the information to my own. Any help would be really appreciated.

    You should be able to find a number of tutorials if you search Google using "AS3 contact form tutorial"
    https://www.google.com/search?q=AS3+contact+form+tutorial

  • Flash Contact form with Php Error

    Hi again (".)
    I've making this contact form on flash & i got  the script  for the action script but i'm unable to integrate a php script that would send the mail from my form.
    I'm using two input feilds with instance names as theEmail and theMessage
    Would relly appreciate it if i culd get some help on it. thank you so much.
    Here is the action action script code i'm using -
    snd_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
    function fl_MouseClickHandler(event:MouseEvent):void
              if (theEmail.text == "" || theMessage.text == "")
                        theFeedback.text = "Please fill in all fields.";
              else
                        // create a variable container
                        var allVars:URLVariables = new URLVariables();
                        allVars.email = theEmail.text;
                        allVars.message = theMessage.text;
                        //send info to a URL
                        var mailAddress:URLRequest = new URLRequest("mail.php");
                        mailAddress.data = allVars;
                        mailAddress.method = URLRequestMethod.POST;
                        sendToURL(mailAddress);
                        theFeedback.text = "Thank You!";
      theEmail.text = "";
                        theMessage.text = "";

    Actaully is i got this Action script from a tutorial and i learnt from it but the mail.php was not part of the tutorial.
    Would you be able to provide me a php script based on the instances names i mention above?

  • PHP files and Flash contact form

    Hello,
    I am creating a website in flash CS4 and I made a contact form and when I test the site out, I can type and click the submit button, so everything is fine there but it doesn't go to anything. Now I know I need a code to tell the contact form where to go, but I can't find one that works, or I may be doing something wrong.  I also have been reading about PHP but I am not sure what that is. I found a site that said to put this code in the actions panel.
    on(release){
        getURL("http://www.mail.menaceaudio.com", "", "POST");
    The www.mail.menaceaudio.com is the site for the companies email.
    So when I test it out this error comes up:
    1087: Syntax error: extra characters found after end of program.

    The code you show is AS2, not AS3. Try searching for 'as3 form php' and you should find plenty of info.
    PHP is a server-side scripting language. You put PHP files on your server and can then call them from Flash...

  • GoDaddy PHP Flash Contact Form Woes...

    Hello! 
    I hope someone can help me.
    I also having terrible problems getting my Mailing List Subscription form to work on my Flash Site. I'm also with Godaddy and they have basically been zero help so far. I'm using CS3 and AS 2.0.
    My form just has 2 fields for name and email and then a submit button. The strange thing is that the way I have it now, I am able to receive the subscription emails if I test it locally from within Flash. But, as soon as I upload it to Godaddy it stops working! What's up with that?
    However, even though when I test it from within Flash and receive the email, the "success" or "failed" response part still doesn't work for my form.
    I've spent so many hours on this... Please help!
    Here's my PHP:
    <?PHP
    ini_set('SMTP', 'relay-hosting.secureserver.net');
    $theName = $_POST['theName'];
    $theEmail = $_POST['theEmail'];
    $to  = '[email protected]' . ', ';
    $subject = "Newsletter Subscription";
    $message = "Name: " .$theName;
    $message .= PHP_EOL . PHP_EOL ."Email: $theEmail";
    $headers = "From: $theEmail";
    $headers .= "\rReply-To: $theEmail";
    $sentOk = mail($to,$subject,$message,$headers);
    echo "sentOk=" . $sentOk;
    ?>
    and here's my AS 2:
    stop();
    var senderLoad:LoadVars = new LoadVars();
    var receiveLoad:LoadVars = new LoadVars();
    sender.onRelease = function() {
    senderLoad.theName = theName.text;
    senderLoad.theEmail = theEmail.text;
    senderLoad.sendAndLoad("http://www.website.com/send.php",receiveLoad, "POST");
    receiveLoad.onLoad = function() {
    if(this.sentOk) {
    _root.gotoAndStop("success");
    else {
    _root.gotoAndStop("failed");
    theName.tabIndex = 1;
    theEmail.tabIndex = 2;

    Actaully is i got this Action script from a tutorial and i learnt from it but the mail.php was not part of the tutorial.
    Would you be able to provide me a php script based on the instances names i mention above?

  • Is SWFOBject messing up my Flash/PHP 'contact form'?

    Hi all,
    First post, and first project using Flash!
    Here's the
    page I'm having problems with...
    It's an email contact page that uses a Flash contact form
    that I purchased from iStockphoto. The swf uses a PHP script that I
    keep in the same location on my server as the swf. The PHP sends
    the email to my specified address. In theory that should work fine,
    but in the interests of keeping things working across browsers, and
    maintaining my Validation, I've been calling the swf using
    SWFObject.
    However, something is screwed up. When I click on 'Send' on
    the successfully embedded Flash form, nothing happens. Neither my
    hosting providers nor the author of the flash have been able to
    work out why - although they both agree that SWFObject may have
    something to do with it.
    Please bear in mind that I'm REALLY new to Flash, although
    I'm by no means a technonewbie - tell me what I'm looking for and
    what to change and I can keep up, but someone posted the following
    on another forum I frequent and I have no idea what it means:
    quote:
    Submitting a form relies on either a post or get method,
    maybe SWFObject needs specific configuration to do this. If it
    doesn't support either of those two methods you may need to use an
    interim piece of javascript or something to accept the form
    variables then call your sendmail.
    Help much appreciated!
    Owen

    kglad,
    The actionscript calls the PHP form but dosen't post any information, it loads in the browser and I get the email but nothing in it?
    I'm just looking for the correct Actionscript to paste into flash and hopefully get it working. Thanks for the help.

  • Contact Form won't display input text

    Hi,
    I'm trying to create a flash contact form that sends the
    user's message on enter key. Therefore I need you to help me do
    this and also help me understand why my form isn't displaying right
    when I have a mask for it.
    To get a better picture of the problem
    here you can
    see how the form should look like and
    here you can
    see the same form, but with the mask

    I'm not sure I understand what you mean by "embed the fonts
    in each of the text fields"
    Please have a look at the .fla file:
    http://www.claudiudesign.org/test/sterg.fla
    (this fla has the mask; if you remove it you will be able to
    see the working contact form)
    It won't take you more than 1 min to understand what's up
    with it if your good at this.
    Thing is I'm behind the schedule with this and I have to
    solve the problem as soon as possible.
    Thank You

  • I NEED HELP! Making a flash email form using php.

    Hi, my name is Sean, I'm making a flash contact form using php for a website.
    I'm having a hard time with the php. Can some one help?
    Click here to download my source.

    Satellite A505-S6005 
    ACPI Flash BIOS version 1.40 for Satellite A500/A505 (PSAT6U/PSAT9U)
    When you execute the download file (sat6v140.exe) it decompresses into several files in the sat6v140 folder. 
    Among those, is the readme.txt attached, which explains how to create the CD.
       Burn a CD or DVD from an ISO file
    -Jerry
    Attachments:
    readme.txt ‏14 KB

  • I have been looking everywhere on how to code a contact form with as3

    I wouldn't think it is such an uncommon thing, but I have been unable to find tutorials past flash 5, or as2, on how to code contact forms.
    I have a simple movieclip symbol, with text fields, all with instance names, and need to find out how to pass the information from flash to a php
    script.  If anyone can help, or atleast point me towards a tutorial that uses something newer than flash 5 and newer than 2004, it would be awesome.

    Would any of these work?
    http://www.webdesignmo.com/blog/2008/08/14/flash-contact-form-in-actionscript-3/
    check this one first:
    http://www.kirupa.com/forum/showthread.php?t=272898
    http://www.edesignerz.net/flash/527--flash-cs3-as3-contact-form-with-php-parser-actionscri pt-3-video-tutorial
    Hope this helps!

  • How to create a "contact form" in flash builder

    How can I build a "contact form" that will sent an email in flash builder.
    Secondly how do I get it inside Flash Catalyst?
    Does anyone know any tutorials?
    Regards
    Rasmus

    Hi,
    May I please have the URL of the site and any specific pages you'd like me to take a look at? Let me check before suggesting anything.

  • Is it possible to create a contact form via Flash cs5.5 and package out app for desktop?

    I need to create a desktop app for windows.  Im using Flash cs5.5 and I wanted to know of an easy to way to create a simple contact form that would work once installed on a desktop/
    Thanks guys for any input!

    If you want a contact form you can either use StageWebView or HTMLLoader to show an HTML page in your web server with a contact form.
    Or you can create the form with Flash textfields and then send the whole thing with a POST request to a PHP script in the server, for example.

  • How to Use Captcha in Flash Forms

    Hi, does anyone knows how to use a captcha in flash forms
    I am using Coldfusion 7 not version 8.
    Please Guide Me
    Cheers

    > CF response
    You said you needed help with ActionScript. What I gave you
    is ActionScript.
    Coldfusion has no built-in method called
    match. You should use REMatch(reg_expression, string) or
    REMatchNoCase(reg_expression, string), assuming you're on CF 8, of
    course.

Maybe you are looking for

  • Why can't I use a instruction dvd disk on my apple mac

    hello hope some one can help me with this problem I have,    I can not get a DVD  instruction disk to work on my apple mac pro,   I put it in and nothing happens  ,what do I do to get it to work ,            would be most great full to some one pleas

  • Generate a report in text file format

    Hello Experts,        I need to write a program to generate a report in a text file format which is later saved on a directory in the application server. I have the fields with the sources defined and also the filters, selections, rows and columns. F

  • Excel Add-In login server dropdown list

    We recently migrated to new servers. We are wanting to know the best way to remove the old servers that display in the login dialog. I have opened an SR and was told to edit the registry. I have removed one server name from the registry (My Computer\

  • 8610 all in one printer error message

    occasionally my new printer gives me an error message (no number on the message): An error occurred while printing.This comes up on websites I use often--no rhyme or reason on which ones it will or will not print-- and it's annoying! There is no help

  • How do you define operators?

    Hi! I'm looking for a way to define operators between objects in java (kind of function you may find in C++), but I haven't found any related topic yet. Any clue would be helpful. Thanks in advance.