ActionScript 2.0 :: Check If Input Is Present In Array?
Jan 31, 2012how to check if my input is present in my array.
View 7 Replieshow to check if my input is present in my array.
View 7 RepliesWhat is the best way to check if a value is current in an array and return true or false. [code]...
View 3 RepliesI 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]....
well both
if(xyz)
and
try{} catch (){} did not work. Both will cause compiler error "Access of undefined property xyz". Inept, what does getChildAt return? Does it return the textField object itself? If so, how do we test if its name is xyz?
I have created a listener for stage in a function. The same function is called by another function. Now I need to check with a condition that whether the stage listener is present or not.
[Code]...
Specific yet simple problem: [URL] What I want to achieve:
1) after 1st entering, NONE of present input fields[TF] is selected.
2) when i press TAB key[1st time], first TF is selected and cursor inside it is blinking.
3) pressing TAB key repeatedly, i can cycle through all TFs [one by one]. The RIGHT order of CYCLING through TFs is displayed inside TFs.
What i have so far:
1) TAB key press works ONLY AFTER i first click on any TF, TFs are cycled in BAD order. Cursor is blinking correctly.
2) implemented Key.DOWN listener. Works without need to first click on any TF, but cursor inside selected TF is missing which makes orientation difficult. TFs are cycled in the RIGHT order.
[CODE]...
Is there a way to test to see if a variable is present anywhere in an array of an undetermined length.
I have people selecting things, and I want to make sure they do not select the same thing twice.
So I want to use some functions that only work if a word in an array is present.
The pseudocode would be something like this
Quote:
if(array contains "word"){
perform function
}
I have a text input box that needs to validate for a number between 0 and 11.75 (inches). At the same time, it needs to validate for no input.
I'm using:if (Number(inches) > 11.75 || int(inches) == 0)This does fine checking for no input at all, but it doesn't validate 0 inches.
Anyone know how to do both: check for no input and allow for 0 (zero)?
Wondering how I can check an input box to make sure it contains a specific email address
I need it placed on my submit button that has an instance name of submitMC
How would I check for example if the input box contained @gmail.com
If @gmail.com is true something A happens. If it's not found something B happens.
I'm trying to make a login. How do I check to see if anything at all is typed in the string.
View 1 RepliesI have created a simple game which asks young children to spell in a text input box the image they see - typically banana, apple etc. I have a text input box into which they spell the word. A button they click to check their answer and a dynamic text box which displays either Wrong or Well done. The code I have applied to the button is pasted below:
on (press) {
if (answer1.text.indexOf("banana") != -1) {
show.text="well done";
} else {show.text="wrong";
}}
The problem I am having is that if they have a variant of the answer in the input text box it displays correct. For example, with the code above, the following answer would receive a correct response - "bananananananan". Is there any way to slightly tweek the code so that they need to spell the exact word? I have noticed that this works the same for simple maths questions. 5 + 5 with an answer of 1000 will give a correct response because somewhere in the answer is 10.
My project is to get a input text from user and user can check their answer by simply click on the button check, if their answer is true a message "good job" will be display. but,my code have an error.check this code 4 me? .
ans1_box.restrict = "0123456789";
var setUpProblem:Function = function():Void
{
[code]........
i want to know how to check if a string is in an input field, so it returns a boolean. I know the answer will be simple and i tried googling it but nothing helpful came up.
View 4 RepliesI have made a text field and a button. The button has the following script applied:
on (press) {
if (textbox.text.indexOf("batman") != -1) {
gotoAndStop(2);
}}
This is taken from a tutorial and works, but it sends me to frame two if I type in "batmannnnnodppsidjssnakd" for example. Could I easily make this just respond if the textbox ONLY contains batman?
I have a quiz where a user must enter a letter (A, B, C) into an input text field labeled answer1. When they click check answer, I need to have feedback that says correct or incorrect. I need to know how to do this.
View 2 RepliesI got a date field that i wish user to key in in a certain format likedd/mm/yyyyBut after my user key in, how can i validate and check that they key in in the correct format?
View 6 RepliesActionScript Code:
var answerArray:Array = ["3", "2", "5", "3", "2"]; //these are the correct answers
var answeredArray:Array = ["3", "1", "1", "3", "2"]; //this is an example of what the user
[code]....
I am an educator and I am designing an interactive activity for my students. I created two buttons named button_B and button_G, and an input textfield named in_Text.when a student presses button_B, the letter "B" is entered into the input text field; if a student presses button_G, the letter "G" is entered into the input text field. More than one letter entry is acceptable as a student's answer: for exmple the entry BBB, BGB within the input field is okay.I have no trouble writing AS3 to accomplish this task, however:For a student's solution to the input text field to be correct, it has to contain the four values BBB, GGG, BGB, and GBG in any order. I created an array named solution_S with these values. I also have an enter the solution button named enter_btn. The student can check their solution by pressing the enter_btn button; if the input textfield is correct, the quiz moves on to the next frame in my timeline; if it is incorrect, it moves to a different frame in my timeline.
View 3 RepliesI have a multipart html form with a file input element and would like to check the size of the selected file before uploading. I can access the file path using the value attribute, however is it possible to pass that path to a swf and have the swf return the file size or is this blocked by the flash sandbox? Are there any existing projects that already do this? I'd like to avoid replacing my file input element with a flash uploader if possible.
View 1 RepliesI am seeing a strange issue in flex. I need to reset all text input fields to 0 once the
user submits the values to be calculated. In the method
private function calculate():void {
resetToZero();
var num:Number = parseFloat(s21.text);
[code].....
ive got a c++ program that im writing, its a simple calculator, the way it runs is by the user entering a number then another number, then the operand..what i need to know is how to carry out a check on the two integers so that only a number can be input, if anything else is then the program returns to the "insert first integer" code.
View 1 Repliesi'm trying to get a Flash form to test certain conditions, one of which is the full date (ie 2006 as opposed to 06), but the AS below (in bold) isn't working... does anybody know the right script?
on (release) {
if (!name.length) {
text.emailstatus = "please enter your name";
[code]....
i have several check boxes and input texts on stage and would like to null out their values with a reset button but seem to be having issues, can anyone take a look
[Code]....
TypeError: Error #1010: A term is undefined and has no properties.
at Main/resetHandler()
I have input text box. the user can place there answer to question 1 in the textbox. what is the capital of the united Kingdom.the answer is london. so i want a to be able to check the user has subbmitted and typed letters london as there answer. i want to check in iput textbox ( the letter keys "london")
ActionScript Code:
var score = 0;
if(question1 == "london"){
score +=1;
I want to check if an input text field is empty. I only managed to do it this way;
mytext = textfield.text;
if(mytext != "") .....
The problem with this approach is that I also want to exclude variables with whitespaces.
I tried; if(!isEmpty(mytext) )..... but that didnt work.
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 RepliesI'm trying to do a check to see if the user inputed a number into an input text field. I'm also running a check to see if the user has left the input blank (which works just fine), but I can seem to get the NaN function working.
(using actionscript 2.0 w/ flash CS3)
Quote:
this.btn_step1next.onRelease = function() {
if ( zipcode.text == "" || zipcode.text == isNaN() ) {
message.text = "Please enter your ZIP code to continue.";
} else {
[Code]....
im just working on my new project. All what i need is, i want to check input text using button, if the value on the input text box is equals 1, trace("true"), else trace ("false").
here's the example link [URL]
the problem is, when im trying to input text to 1, it's always goes to else, which means false. also all number. sorry for my bad english. here's what i did
var check:Boolean = false;
var input1:String;
var answer:String = "1";
[Code]....
I am new to writing ActionScript and I'm designing a customer form for my web site. I am using multiple textInput's, Dropdown boxes and check boxes. Here is some of the code I have now for this form: [URL].
Code:
package{
import flash.display.*;
import flash.events.*;
import flash.text.*;
import flash.net.*;
[Code] .....