ActionScript 2.0 :: Check Input Box For String?
Aug 20, 2010
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.
View 3 Replies
Similar Posts:
Oct 5, 2009
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 Replies
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
Feb 3, 2009
I am looking for a way to check if any sting of the Array is matched to the string that in the TextField. In the code it should be something like that:
Code:
var TestString:Array = new Array ("chicken", "cat", "dog");
function LookStringArray(){
if (TestArrayTextfield_txt.text == (anyString.TestString)){
[code]....
View 2 Replies
Feb 10, 2012
How can I check if a string contains another string in flash / Actionscript 3 ?
View 1 Replies
Jul 16, 2009
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)?
View 4 Replies
Feb 18, 2012
Is there a static property in Action similar to that in the String object in .net to check if a string is empty, that is String.Empty.
View 2 Replies
May 13, 2009
I would like to know a simple way to check if a string contains numbers 0 to 9. Ideally, a function I could pass strings to for checking.
View 4 Replies
Feb 17, 2010
I'm trying to make a login. How do I check to see if anything at all is typed in the string.
View 1 Replies
Oct 3, 2011
I 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.
View 4 Replies
Dec 24, 2009
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]........
View 1 Replies
Nov 8, 2010
I 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?
View 6 Replies
Jan 31, 2012
how to check if my input is present in my array.
View 7 Replies
Jul 27, 2004
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 Replies
Aug 19, 2005
I 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 Replies
Jul 13, 2009
Good technigue for finding out if a string has any letters?I'm not looking for a specific letter, I just want to search a string and find out if it has any letters.
View 2 Replies
Oct 3, 2011
If i had a string "2 cats", how could i use a loop andif statement to check if there is a number in there
I have this so far:
for (var i:Number=0; i<string.length; i++){
if(equation.charCodeAt(i) <= 57)
{if(equation.charCodeAt(i) >= 48)
[Code]....
It does work, but is there a more efficent qway of doing this?
View 9 Replies
Feb 22, 2011
I have a regular expression in my code. What I want it to do is to check user input. This input should be a string of 9 numbers with spaces between them. So for example "1 2 3 4 5 6 7 8 9" should return true, but also "123 45 2765 23 3456 23 5 456 1" should be true. [code]My problem is that if the strong with number is longer, the usual test method still returns a true. Is there a way to check if the string is longer then this?
View 3 Replies
Jun 19, 2008
I want to check to see if a string is in an array, so basically:
If (string1 == [any item in array]) {
// do something.
}
But I am not sure how to write it..
View 2 Replies
Apr 19, 2010
How to check if a string is empty?
View 3 Replies
Dec 14, 2010
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 Replies
Nov 29, 2010
I 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 Replies
Apr 30, 2011
I 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].....
View 1 Replies
Nov 20, 2003
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 Replies
Jan 28, 2010
I am looking for a way to check if any sting of the Array is matched to the string that in the TextField. In the code it should be something like that [code]...
View 2 Replies
Dec 20, 2011
I am developing an application in AS3 for Android devices and I am choosing to use XML for setting storage...
Unfortunately I have been able to test using the contains method whether there is the correct text in the XML file I have tried to use this...
Code:
var updates:Boolean = true;
var k:Number = 0
for(k = 0; k < 6; k++){
if(localXML.Party[k]){
[Code].....
View 1 Replies
Jun 10, 2011
I'm new to actionscript and i cant seem to get the regex syntax right in actionscript3. The task is straight forward, i want to make sure that the first two characters in a given string are alphabets and nothing else.[code]
View 2 Replies
Jan 28, 2010
I am looking for a way to check if any sting of the Array is matched to the string that in the TextField. In the code it should be something like that:
ActionScript Code:
var TestString:Array = new Array ("chicken", "cat", "dog");
function LookStringArray(){
[code].....
View 4 Replies
Mar 4, 2012
I've read some documentation about regular expressions in AS3. I was wondering if it is possible to check every word of a string for a pattern. If all the words satisfy the pattern, the test is passed, otherwise is failed. [code]
View 1 Replies
Sep 24, 2003
Is there a way to check if a string contains different characters in just one line?
//this would be for just a:
if (stringAnalyzed.indexOf("a")!=-1){
//whatever actions;
}
[code].....
I know this doesn't work. What is the right syntax?
View 2 Replies