Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
kevindarbro webforumsuser@macromedia.com #1
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
-
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... -
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.... -
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... -
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... -
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... -
Jorge Braccini #2
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...button to submit a user response with the following script on it:> Hi:
>
> I've got an input field named "9bField" in the property inspector, and asend the playback head to a frame labeled "9bRight". The only thing that>
> ----------------------
>
> 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
happens when a user clicks the submit button is the execution of the "else"
gotoAndPlay, regardless of a correct entry of the word "value".and so on, and the script checker kept giving me errors.>
> I tried the same AS without the quotes, as in "if (9bField == "value"){"simple incorrectly, but I can't find it, and it's driving me mad!>
> This should be very straightforward, and I must be doing something very>
> Any input is very welcome.
>
> Thanks,
>
> - Kevin
>
>
>
Jorge Braccini Guest



Reply With Quote

