Input Text Matching Frustration

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Input Text Matching Frustration

    Hi:

    I've got an input field named "9bField" in the property inspector, and a button to submit a user response with the following script on it:

    ----------------------

    on (release) {
    if ("9bField._text" == "value"){
    gotoAndPlay("9bRight");
    } else {
    gotoAndPlay("9bWrong");
    }
    }

    -------------------------

    What I'm trying to do is have the user input the word "value" and then send the playback head to a frame labeled "9bRight". The only thing that happens when a user clicks the submit button is the execution of the "else" gotoAndPlay, regardless of a correct entry of the word "value".

    I tried the same AS without the quotes, as in "if (9bField == "value"){" and so on, and the script checker kept giving me errors.

    This should be very straightforward, and I must be doing something very simple incorrectly, but I can't find it, and it's driving me mad!

    Any input is very welcome.

    Thanks,

    - Kevin



    kevindarbro webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. text correction frustration.
      Apologies if this subject was discussed earlier. Just when I was about to close and send off a lengthy .pdf file (Acrobat 6) I caught a spelling...
    2. Text Matching
      Hi everyone. I am working with an Illustrator 9.0 drawing that was given to my, drawn by someone else. I'm just trying to do some updating to it....
    3. Text vs Field for text input
      I know this is a bit of a back-to-basics question, but it is something I have never really got my head around when to use text and when to use...
    4. Matching quoted text question...
      I'm trying to place HTML Tags around the contents of Quoted material. I'm using the following PERL code: $TextBlockToConvert =~ s/"(.+?)"/"<FONT...
    5. Matching text question..
      I'm having trouble matching only entire words. If I run a search against a large block of text for the word: or It will find 'or' in every...
  3. #2

    Default Re: Input Text Matching Frustration

    test this..

    on (release) {
    if (9bField.text == "value"){
    gotoAndPlay("9bRight");
    } else {
    gotoAndPlay("9bWrong");
    }
    }

    i dont test it.. but i think it must work.
    cyaa
    --
    Jorge Braccini
    [url]www.entersystemscorp.com[/url]
    Media Interface Developer

    "kevindarbro" <webforumsuser@macromedia.com> escribió en el mensaje
    news:bvp0jt$n88$1@forums.macromedia.com...
    > Hi:
    >
    > I've got an input field named "9bField" in the property inspector, and a
    button to submit a user response with the following script on it:
    >
    > ----------------------
    >
    > on (release) {
    > if ("9bField._text" == "value"){
    > gotoAndPlay("9bRight");
    > } else {
    > gotoAndPlay("9bWrong");
    > }
    > }
    >
    > -------------------------
    >
    > What I'm trying to do is have the user input the word "value" and then
    send the playback head to a frame labeled "9bRight". The only thing that
    happens when a user clicks the submit button is the execution of the "else"
    gotoAndPlay, regardless of a correct entry of the word "value".
    >
    > I tried the same AS without the quotes, as in "if (9bField == "value"){"
    and so on, and the script checker kept giving me errors.
    >
    > This should be very straightforward, and I must be doing something very
    simple incorrectly, but I can't find it, and it's driving me mad!
    >
    > Any input is very welcome.
    >
    > Thanks,
    >
    > - Kevin
    >
    >
    >

    Jorge Braccini Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139