Professional :: Store A String Of Characters From An Input Text Box?

Jul 26, 2010

I basically need to store a string of characters from an input text box and have them displayed at the last frame of the quiz.  I declared the variable holding the input text as _global.player in the first frame, and upon clicking the start button the code is:
 
on (release) {    _global.player=player.text;    gotoAndStop (2);    }
 
These variables are not referenced again until the last frame of the quiz, which reads thus:
 
stop();playerdisplay.text=_global.player;score.text=_global.correct;'Endng Comments Generator'if (_global.correct<=3) {    phrase="Try a little harder next time";}if (_global.correct>3 + _global.correct<7) {    }comment.text=phrase;
 
Yes, I know the global.correct coments are not yet complete, but i dont think that should be causing any issue with the playerdisplay.text (the dynamic text box to display the player name).  If anyone could give me a hand that would be great.  Nothing appears in the dynamic text box when the final frame of the movie loads.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Store Text Input To Use Again On Another Frame?

Nov 16, 2010

How can I store a text input so that I can use it on another frame? I tried storing it into variables on a frame and using it on another frame but there was an error that the variable was undefined. (Location of error on the second frame)

View 4 Replies

ActionScript 2.0 :: Input Text And Store The Data?

Jun 17, 2004

give me a example of a fla file where we can input our data and the data will be save using flash MX?

View 3 Replies

ActionScript 2.0 :: CS3 Hide Text Input Characters?

Mar 14, 2009

I am working on a login system and would like to hid the password text entry.Also, can someone provide some insight into how you "remember" a person (login info). Nike does it here. URl...

View 3 Replies

ActionScript 3.0 :: Limiting Input Text To Unique Characters?

Apr 20, 2011

I already know how to limit my input text to a number of characters, but how would I go about (if possible) making sure characters do not repeat? In other words, I have a ten character input text box and I want you to be able to type pretty much any character but only one of each.

Example:

AFKEIOPCNK

What I'm trying to eliminate is this:

AANHDKDDJI

If that isn't possible, I'd like to instead detect if there are repeated characters so I can just say "that's invalid".

View 2 Replies

ActionScript 3.0 :: Show Tab Characters In Input Text Field?

Nov 23, 2011

I am working on an application that allows user to copy and paste content into a text field. The problem I'm running across is that when the user paste something with a tab in it, the tab is not shown in the text field.[code]...

View 1 Replies

ActionScript 3.0 :: Input Text Fields And Special Characters - MAC Vs PC

Dec 5, 2010

I have an input text field with embedded fonts together with embedded special characters. I published my app on MAC, when I use my app on mac - all is fine all special characters are displayed correctly - but when I test it on Windows - special characters do not appear or I get wrong characters when I type. I'm confused - becase I have embedded fonts etc - and all should work but for some reason it does't...

View 0 Replies

Flash 10 :: Certain Characters Aren't Recognized By Text Input?

Mar 17, 2011

I have a text input box on a site i'm currently building. Problem is, when testing it, some letters don't register as being pressed (and no, its not my keyboard before you ask hehe).

The letters which don't show up are, "B,C,E,F,G,H,I,J,K,L,M,N,Q,T,U,V,X,Y,Z". In fact, the only letters that are recognized and displayed when I type into it are: "A,D,O,P,R,S,W".

View 1 Replies

ActionScript 2.0 :: Enter Special Characters In The Text Input Field?

Jul 12, 2010

I have taken over an old project of a registration page after a short quiz and for some reason it is not possible to enter special characters in the text input field. example: @ but it is also not possible to enter a y or a capital W and some others. I have not found any thread or google infos on this problem and am short of reprogramming the whole thing in as3 which is very tedious because the whole site is still running as2 and we do not have time nor money to update.

View 2 Replies

ActionScript 2.0 :: Calculator - Clear The Text Field Then Store The New Input In The Same Text Field As A Different Variable

Mar 30, 2006

I'm making a calculator using Flash MX that works the same way as the basic calculator found on windows (not the scientific one). But having the user input a number, store it as a variable, store which function the user wants to perform and clear the text field then store the new input in the same text field as a different variable and multiply or add or divide or subtract the 2 numbers and getting the equals sign to display the answer when clicked is harder than I thought it would be.

View 3 Replies

ActionScript 2.0 :: Text String - Width Or Number Of Characters

Dec 26, 2003

How to get a text string to fill a particular width i.e. with a specific character until it reaches the specified width or number of characters?

View 1 Replies

ActionScript 2.0 :: Text String, Width Or Number Of Characters?

Dec 26, 2003

how to get a text string to fill a particular width i.e. with a specific character until it reaches the specified width or number of characters?

View 1 Replies

Actionscript 3 :: White Space Between Characters Inside A Text Input Field?

Dec 7, 2010

Is it possible to ignore white space between characters inside a text input field let's say a user types in "bri an" instead of "brian. Is there a way that white space is ignore and treated it as one word?

View 1 Replies

ActionScript 2.0 :: Restricting To Number, Allowing Special Characters In Text Input?

Mar 29, 2010

I think this can be really easy however i'm not reaching the answer of this question. i have text inputs .......and i want to restrict the input to only Numbers...mytextbox.restrict = "0-9"; now when i try entering the values it works fine.....but but.....i doesn't accept any special characters.and i want it to atleast accept '.' because i want to accept decimal values

View 1 Replies

ActionScript 2.0 :: Getting Input Text Value (string)

Feb 14, 2010

On stage I have three input text boxes each with an instance name of w1, w2 and w3.On running this:[code]So, I'm trying to set up multiple input boxes and get each text string to concantonate in another string (like a MadLib)

View 4 Replies

Professional :: Loading External Text Form XML - Text Has Special Characters?

Jul 14, 2010

in my projects i often use some xml files to load external text that i can format in css and it worked fine till now..i have a site that i am prograaming in italian and german and in both languages there is much text that contains special characters as "à" "ò" "è" "ù" "ä" "ü" and so on .. the problem is that when i write some text with this special characters in xml when the text is loaded in the flash this special characters are not recognised and instead of them a small square is displayed ..
 
i tryed to load the text from a html file instead of a xml file (because in HTML i know how to write theese special characters and let them display right in my html pages .. for example à = à but no way .. the flash now loades the text à instead of à ..

View 2 Replies

Professional :: Assigning More Than One Input Term To Input Text Box

Jun 2, 2011

[Code]...

This code corresponds to a quiz question where the correct answer is either blue or green. I get the #1009 error if I input "blue". The answer "green" seems to work ok. What's wrong with my code? Is there a better way to make is so more than one answer works? Something like "blue" or "green" or "otheranswer", etc..?

View 3 Replies

Flex :: Input Text String And Add To List?

Oct 1, 2011

I have a list control in a component mxml file. I have created a function in main mxml file, I want to input a text string and add it to this list. How can I do that. Currently using this code
public function add(event:MouseEvent):void {
var name:String = mytextinputid.text;
currentState = 'ChatScreen';
mylist.____
}
Note that this function is in main and the mylist list control is in component mxml.

View 1 Replies

ActionScript 3.0 :: RegExp - Look For ID In Input Text String

Jul 8, 2010

ActionScript Code:
input.text = "[URL]";
function PlayVideo(event:MouseEvent):void {
switch (event.type) {
case "click":
var findVideo:RegExp = /(?<=?v=)([a-zA-Z0-9_-])+/;
trace(findVideo.exec(input.text));
break;
}}

I don't know what video this is (just picked it randomly off of the front page), but by clicking a button, the RegExp is called, looks for an ID in the input.text String, but when it does and I trace it, it gives me this:

ActionScript Code:
QGsGJlCpor4,4
What's with the ,4? How do I get rid of that?

View 3 Replies

Actionscript 2.0 :: Input Text String Comparison

Sep 22, 2010

I've been trying to compare two strings. One from an input text field, input_txt, and the other a variable. For some reason, even though both trace out exactly the same, it's not seeing a match.

[Code]...

View 1 Replies

ActionScript 2.0 :: Input Text To Be Treated As Number NOT String?

Sep 22, 2009

I have an application that is trying to sort of scores. The problem is that when it tries to sort it errors as it is checking if one string is less than another string when it should be doing one number less than another number.

I have played with parseInt but I haven't managed to get it to work?

Code:
this.onEnterFrame = function() {
if (parseInt(yourtime_txt.text)<parseInt(pos1time_txt.text)) {
pos1time_txt.text = parseInt(yourtime_txt.text);

[Code].....

View 7 Replies

How To Split Input Text Field (String In Flash)

May 23, 2009

I tried to the following code but it doesn't work presumably because I'm trying to split an input text field but I can't say split("
")

The code:
Code: Select allvar text_height = input_txt.split("
").length*12;
Is this possible to do?

View 2 Replies

ActionScript 3.0 :: Flash : Reference Input Text Box String?

Dec 12, 2010

how to make a simple AS3 class.I've made a simple calculator application that allows you to add, subtract, multiply, and divide after entering 2 values into their respective text box.The problem, how ever, is once I moved it into it's own class, I cannot figure out how to reference the text fields. I have the movie clips referenced just fine, but, I cannot figure out the text fields.Here are the errors it's spitting out:

Code:
1120: Access of undefined property Number1_txt.
1120: Access of undefined property Number2_txt.
1120: Access of undefined property finalValue_txt.

And it does that for each instance of those in the Calculator.as

Main.as

Code:
package {
import flash.display.MovieClip;
public class Main extends MovieClip {

[code]....

View 5 Replies

ActionScript 3.0 :: Load Input Text Into Url String And Attach It To A Button?

Mar 11, 2009

I have a simple page with a text box and a go button on it. I am trying to build a URL from text that's put in that box.For example, someone types "peanut" in the box, then hits the go button.When they do, it loads the page "http:[url].....It seems simple, but I am not getting the variable to store/pass properly.

View 5 Replies

ActionScript 3.0 :: Convert Input Text Field Data Into A String?

Oct 11, 2011

I have a string that searches the Twitter API, for keywords, for example :
  
var url:String = "http://search.twitter.com/search.json?q=Robin%20&lang=en&rpp=100";
 
I also have a input textfield dynamically created:
  
var inputField:TextField = new TextField();
addChild(inputField);
inputField.border = true;
inputField.width = 200;

[Code]....

But how do i take the data from the input text field and add it to the string, keep in mind the input data has to go in the keyword part for the string.

View 5 Replies

ActionScript 2.0 :: Replace "bad Characters" In A Text String Received From An XML Document?

Apr 2, 2008

I want to replace "bad characters" in a text string received from an XML document but the replaced text seems to be undefined inside the for loop.

ActionScript Code:
for ( var i:Number = 0; i < l; i++ )
{[code]....

View 1 Replies

Professional :: Dynamic Text Field Is Not Displaying Foreign Characters?

Nov 30, 2010

I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
 
Here's what I've tried.
 
Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly?

View 3 Replies

Actionscript :: Caret Return Character Added To String Taken From Adobe Flash Input Text Field?

Feb 25, 2010

I have encountered strange problem. I have created simple Flash text field control and I wanted to compare its content with some other string. This comparison in triggered when user is pressing the button.In Action Script 2.0 code I noticed that a caret return character () was added at the end of the string coming from the input text field.It is easy to overcome the problem obviously, however I would like to understand what is going on. I use Flash CS4 with AS 2.0.

View 1 Replies

ActionScript 3.0 :: Store A String Pulled From A Array?

Jul 17, 2009

Ok im new to using arrays but here is my question I have a word list Array and it brings up a random word from the array. Is there a way to store each word used from the array to compair to so that the same word dose not get used twice... or even just remove the word from the array list till there is nothing in the list? Im using flash CS4 in AS3 for player 10.

View 3 Replies

Actionscript 3 :: Store A Large String In Flash?

Nov 22, 2011

My game stores levels in large strings. Not very long, the length is about half my desktop on a 1080p screen.[code]...

Flash IDE tells me that I will need to end the string literal before a new line. I can't, since it's too long. (For the IDE, not flash enviroment)

View 4 Replies







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