Input TextBox - Evaluating Answer When User Press Enter Key?

Jun 29, 2009

I'm very new to Flash, and I'm not a programmer, I have an Input text box named txtNe2 where a user will type an answer to a question. I want to evaluate the answer when the user pushes the Enter key and respond by sending the movie to either the "Ne2C" frame or the "Ne2I" frame (for the response to the correct or incorrect answer).

View 4 Replies


Similar Posts:


ActionScript 2.0 :: Allow User To Enter Value In Input Textbox Fields

May 10, 2010

I want the user to enter text in the input textbox field. Any text. There is no correct answer. My existing code below--leaving empty quotations--doesn't work.
on(release) {
if(InputBox.text = " "){
this.gotoAndStop(2);
} else {
gotoAndStop(3);
}}

View 2 Replies

ActionScript 2.0 :: Check User Answer By Checking Input Text Box

Jul 26, 2004

how do i check the answer that enter by user.... the marks is given by checking whether they user key in the keywords or not... i m thinking of using string method...but i not able to do it...

View 1 Replies

ActionScript 2.0 :: Next Scene Will Appear In Movie When User Press Enter

Apr 4, 2008

I am making a presentation and I want when my movie stop. the user press ENTER and the movie go to and play my next scene (scene 3) like powerpoint. How I can make that?

View 4 Replies

ActionScript 2.0 :: Detect The Enter Key Being Pressed While In A Input Textbox?

Feb 19, 2009

I got this code:

Code:
if(Key.isDown(Key.ENTER)&&_root.answer==_root.youranswer)
{
//game over code here
}

However the "youranswer" variable is represented by the value in an input textbox and when I push enter, it just blanks it out and it never matches.

If I change it from Key.ENTER to Key.SHIFT, it works.

But this game: [URL]

has it where it can detect Enter and do a check with an input text box. How does that work?

View 2 Replies

ActionScript 3.0 :: Chatter Bot - Processes The User Input Text And Search For An Answer In The XML File

Feb 7, 2009

I am working in a AI project: a Chatterbot and it works fine. I work in webdesign, video, 3D and illustration and this personal project eats my free time You should set the answers and questions in the XML file called "bdenglish.xml", it contains a basic example. The bot will understand the new nodes. Actionscript(FLA) processes the user input text and search for an answer in the XML file. The bot can understand several ways to make a question. Also it can memorise the conversation subject if you use XML propierties (It is unfinished) The user can use ENTER key or the SEND button. The bot can know the genre of the user because it is male like default, but it search in a female names list. The output field answer is HTML text, also it support images, animations or sounds. The bot can chat in several languages. You can synchronize video with the answers (bot expression), I am woking in a basic function with video.

I am workin in a alternative answer motor, it would work with the XML. I want to use lipsync in the future for a talking version. How it works? - The bot converts the XML database to an multidimensional array.- The user writes a question - This input is processed in the AS code - The bot searchs in the multidimensional array - The first word must be found - The bot answer the question or it responds something if the question is not found I am not programmer and the AS3 bot was hard for me, but it works. I was trying get a good code and I am work in a better search function. I hope some criticism and comment from Kirupa masters! It is in my personal site:[URL]

View 2 Replies

Actionscript 3 :: Catch Enter Key Press In Input Text Field?

Feb 19, 2010

I want to catch the enter key press when the user is filling an input text field in AS3.I think I have to do something like this:

nputText.addEventListener(Event. ? , func);
function func(e:Event):void{
if(e. ? == "Enter"){

[code]....

View 3 Replies

ActionScript 2.0 :: Replace Input Textbox Text And Submit On Enter Key?

Oct 5, 2011

I am making a little banner for my site that makes different offers based on geo location (zipcode). I have the code working pretty much except for a few elements I want.

1) I want the input box to say "Enter Zip Code" until the user clicks on the input box. Then it clears out and the user can enter their zip code. The text box at this point should only take in 5 digits and no more.

2) Instead of having to click on the button to submit the form I want the user to also have an option just press enter when they are on the input text field and it process the form.

I am using Flash CS5 with AS2

This is the code I have so far:

ActionScript Code:

Code:
TraceOutputFileEnable=1
trace('this is the begining of the code');
var nameText:String = "Zip Code";

[Code].....

View 4 Replies

ActionScript 3.0 :: Get An Answer From Input Text Field And Compare It To The Correct Answer?

Jul 8, 2010

I am trying to get an answer from Input text Field and compare it to the correct answer.here is how my code look like:

//I have a confirm button here
confirm_button.addEventListener(MouseEvent.CLICK, ConfirmFunction);
//I have a correct answer as a String here
var correctans:String = "July";

[code]....

This will check if correct answer contains words in the answer from input text field.But that will result on if I key in "July is great", it will still link to the correct answer frame instead of wrong answer frame.I want the answer to be exact same as the correct answer.

View 4 Replies

ActionScript 3.0 :: Input Text Box - User Can Enter Only Number Between 0 To 255

Jul 31, 2009

i have input text box i want user can enter only number between 0 to 255. if tries to enter greater number thar 255 then it show previous one e.g user entert 64 and then 6, in that case only 64 shown in text box .

View 4 Replies

IDE :: Create An Input Text That Asks The User To Enter A Value

Feb 17, 2009

I tried to create a input text that asks the user to enter a value then i wanted that value to be compared with another var by an if statement but when it gets to that part it always goes to the else condition. I did check the values by making the flash view, they are the same but its still not running as i want it to.

anyways ill leave you with the code :

variables:
btn: a button i created
maq: an empty string that stores the value of the input text
GPA.text: name of the input text
V3: is just a dynamic text to let me know if the condition is met or not

Code:
stop();
btn.addEventListener(MouseEvent.MOUSE_UP,checker);
function checker(Event:MouseEvent):void

[Code]...

View 3 Replies

ActionScript 2.0 :: Some Action When User Enters Something In The Input Field And Hit ENTER?

Nov 17, 2008

For an input field - i need to have some action when user enters something in the input field and hit ENTER.I am using this: but with this user can hit enter anywhere on the screen and get the action- i need to have it only when user selects the input field.

Code:
myNewObject = new Object();
myNewObject.onKeyDown = function() {[code]...

View 1 Replies

ActionScript 3.0 :: Evaluating Contents Of Textbox And Responding

Feb 9, 2011

I have 25 textboxes on stage. I am using a for loop to point to each textbox and evaluate the contents. When I come across a textbox that has the letter "Y" in it I want to place an object called colorbox at a certain location. To do this I have assign the value in each textbox to a variable called tf and then evaluate the variable tf to see if it contains the letter "Y". When I trace this variable outside of my if statement it correctly shows the contents of the current box, however within my if statement it doesn't. Also the colorbox doesn't get placed at the designated coordinates and I get the following error message:[code]

View 1 Replies

ActionScript 3.0 :: Evaluating Contents Of Multiple Textbox Objects?

Feb 8, 2011

I have 25 textboxes on stage named sw1 through to sw25. I want to evaluate the contents of each box using a for loop. How can I do this. Note the following code does not work for me.

for(var i = 1; i<26;i++)
{
var t = "sw"+i
trace (t.text)
}

I get this error message when I run my program:

Property text not found on Number and there is no default value. at Mastercalendar_fla::MainTimeline/frame1(E)

View 1 Replies

ActionScript 2.0 :: Input Textfield And When Type Something And Then Press "ENTER" On The Keyboard?

Mar 1, 2003

How can I have an input textfield and when you type something and then press "ENTER" on the keyboard something happens? Just need to know how to make an enter listener!

View 14 Replies

ActionScript 3.0 :: When Press ENTER The Text Dissapears From The Input Text

Mar 30, 2012

I have created an input textbox and a dynamic textbox. My idea is to enter something into the input textbox, and on pressing ENTER key it would show up in the dynamic textbox. When I press ENTER, the text dissapears from the input txt, and nothing happens.

[Code]...

View 1 Replies

ActionScript 2.0 :: Input TextBox - Restrict User From Entering More Than Predefined Number Of Lines

Oct 15, 2007

I am working on an application in which i have put one Multi line input text box. I want to allow user to enter data only up to 8 Lines. User can not enter more than 8 lines. So is there any solutions..??? I dont want to use MaxChars as it can restrict user to not enter more than predefined number of characters. I want to restrict user from entering more than predefined number of lines.

View 4 Replies

ActionScript 2.0 :: Input Quiz - Check Input Answer Against Random Display From Array

Jan 21, 2009

I am trying to check input answer against random display from array. but sometime it trace not correct when it is correct this is the code i use

[CODE]....

View 7 Replies

ActionScript 2.0 :: When I Press On Answer Button, The Result Displayed Is NuN?

Aug 7, 2009

i am creating a maths quiz...There are 2 input text fields..The instance names of 2 input text fields are inputField and inputField02. There is one dynamic text field to display the result....The instance name of dynamic text field is resultField.

Code:
var a: Number;
var b: Number;[code]....

however when i press on answer button, the result displayed is NaN.What's wrong with the code?

View 1 Replies

ActionScript 2.0 :: TextField - How To Capture User Answer On Frame 3

Jan 24, 2009

I created text field. Instance name of the text field is answer_txt01. When I enter the right answer "red", it should go to frame 2. However regardless of right or wrong answer, it goes to frame 3. How do I capture the user's answer on frame 3?

answer = answer_txt01.text;
answer_btn.onRelease = function() {
if (answer == "red") {
gotoAndPlay(2);
} else {
gotoAndPlay(3);
}}

View 9 Replies

ActionScript 1/2 :: Input Text Will Not Allow To Access The Correct Answer

Mar 8, 2012

i am trying to create a simple quiz in school. I have one test question which requires the answer to be -1.I have created Input text and assigned the variable answer for this question.I have a button with the following AS2 script: 

on (press, keyPress "<Enter>") {
if(answer eq "-1" or answer eq "minus 1"
or answer eq "Minus 1" or answer eq "Minus one" or answer eq "minus one")

[Code]....
 
Firstly whatever you type the numerical keys are immobilised on the keyboard when the .SWF file is builtSecondly I cannot enter the correct answer!! If I type in Minus 1 etc it goes to frame 3.I have tried flags rather than frame numbers - same problem.i have tried remaking the quiz as a  separate file.using CS4 and CS5 flash - windows 7 PC.

View 6 Replies

HTML :: Ask For Input Text And Send To Link According To Answer

Feb 26, 2012

I would like to make an input text field in flash as2. What I need is when the user write down an answer it will direct him to an html page I created. There are 3 answers and 3 pages, so they will write down one of the answer and when they will click "enter" they will be redirected. I understand you can do it with "if" statement but I don't know how!

View 1 Replies

ActionScript 2.0 :: Text Input Boxes - Checking Right Answer?

Jan 26, 2009

I have four text input boxes, and I need to be able to script it so that when the "Done" button is pushed each of the boxes are checked for the right input. I've tried two different methods, neither of which work or the answer is automatically correct.

View 3 Replies

Professional :: When I Press CMD + Enter I Get The Error?

Feb 9, 2011

I installed Flash CS5 on my Mac but I have problems with testing movieclips. When I press CMD + Enter I get the Error:
 
"Fehler beim –ffnen der URL 'file:////Volumes/myuser/.....file.swf'"
 
When I publish the movieclip, all it's ok and I can watch the video in my browser.But this way is not useful for developing AS.

View 6 Replies

IDE :: Enter On Textbox To Invoke Function?

Dec 13, 2009

how i can press enter on a Textbox to invoke a function instead of pressing a button. I'm creating a chat application and its very inconvenient to press a button to send a message

View 1 Replies

ActionScript 2.0 :: Make The Script Recognise The Answer Input In All Cases?

Feb 3, 2009

i have created a fill-up word blank and button. After filling up the word blank, click on "result" btn.the instance name of the text field is answer_txt.

result_btn.onRelease = function()
{
answer = answer_txt.text;[code]....

How do i make the script recognise the answer input in all cases? For e.g aPArtment, APARTMENT...

View 1 Replies

ActionScript 2.0 :: Text Field And Recognize The Answer Input In All Cases?

Feb 4, 2009

i have created a fill-up word blank and button. After filling up the word blank, click on "result" btn. the instance name of the text field is answer_txt.

[Code]...

How do i make the script recognise the answer input in all cases? For e.g

View 1 Replies

Professional :: Interactive Quiz - Three Questions That The User Must Answer With Three Possible Answers In Frames 3,4 And 5?

Feb 10, 2010

For my project i am creating a quiz on the Romans. There are only three questions that the user must answer with three possible answers in frames 3,4 and 5.I want to know the code that would help me to allow a Jpeg (an evaluation of the answer given on each frame) to be placed on frame 6 ready for the user to receive feedback for each answer they have given. So when the user selects an answer, the corresponding jpeg to that answer is placed ready on frame 6 for their arrival after they have answered the third question.

View 1 Replies

ActionScript 3.0 :: Press 'Enter' Key And Call A Function?

Jul 2, 2009

I have a text chat program which let users input text message.

I want them able to input text by pressing 'Enter' key on keyboard.

Code:
if(Key.isDown(Key.ENTER)){
addTextMessage();
}

It has compiled error on AS3. How should I fix it?

View 9 Replies

ActionScript 3.0 :: Enter Key Press Call Function

Feb 8, 2008

enter key press call function AS3 I know this been covered, but for some reason i can not get this to work. I want the enter key to perform the same function as the submit button here.

[Code]....

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved