ActionScript 3.0 :: Arrays With TextBoxes - Input Not Displaying

Nov 26, 2010

I am new to flash and trying to output numbers I have put into textboxes with a button.

My code so far:
var myArray: Array = new Array();
myArray.push(Number(textbox1.text))
myArray.push(Number(textbox2.text))
myArray.push(Number(textbox3.text))
button1.addEventListener(
MouseEvent.MOUSE_UP,
function(evt:MouseEvent):void {
trace(myArray);
});

So I have made 3 textboxes and a button, I run this and when I input info into these textboxes and hit the button it displays 0,0,0 like it doesn't read the numbers I have inputted into the textbox.

View 5 Replies


Similar Posts:


ActionScript 3.0 :: Use Arrays With Textboxes?

Nov 26, 2010

I am trying to use arrays with textboxes. What I initially wanted to do was have 3 textboxes ( a, b and c) and when the user inputs information into the textboxes:

Textbox A: Tea

Textbox B: Coffee

Textbox c: Softdrink

It stores the information into an array that I can later view and call upon these strings inputted into the array.

View 4 Replies

ActionScript 2.0 :: Array And Multiple TextBoxes - Displaying Message?

Aug 28, 2010

I have an array and 4 text boxes (named lane1, lane2, lane3 and lane4), and the array tells me which text box to put text in. This is my current code:

Code:
lane = ["lane1", "lane2", "lane3", "lane4"];
messageLane = ["2","3","1","3","1","1","1","1","1","1","2","3","2","1","1"];
messageLetter = ["4","4","0","4","0","2","6","0","2","0","6","4","6","5","2"];
step=0;
onEnterFrame=function(){
number1=(messageLane[step]);
number2=messageLetter[step];
lane[number1].text = number2;
step++;
}

I used an array called lane because it wasn't working without the array, but still isn't. I kept the array just because it keeps it just a bit organized. The trouble is the line:
lane[number1].text = number2;
Because lane[number1].text isn't recognized as a text box, well not a text box with the same name as I want at least... Each four text boxes do not show anything?

View 4 Replies

ActionScript 3.0 :: Cannot Type In When Tab Through Input TextBoxes

Nov 28, 2009

I have created some input text boxes using AS3. For starters, unless I set the text in the code to = " " you can't type in them. Secondly if I click on each box individually I can type in them. However if I tab through them I can't. Here is a link to the site I'm working on. I'm referring to the calendar / bookings form on the first page. To see the form just click on a date after today. [URL].

View 3 Replies

ActionScript 2.0 :: Saving Info Into Input TextBoxes

Mar 18, 2004

Is there anyway to make save information that people have put in input text boxes. For example they could put the info in and then save it so it will appear next time.

View 1 Replies

ActionScript 2.0 :: Get/set Values To Dynamic/input Textboxes?

Mar 14, 2007

I'm trying to set up a calculator for a couple of formulas I need to use for some schoolwork. I thought it would be a lot easier if I could just put the numbers in there and hit enter.I can't figure out how to transfer the numbers from the input box to the dynamic box though =/. I figured I'd try to get going really easy, just do a input box, when you click on a button, a dynamic box displays whatever is in the input box. I cant get it to work though . I tried various variations of codes, Heres some of them:

[AS]
this.btn.onRelease = function(){
this.outp.getProperty(this.inp)

[code]....

View 5 Replies

ActionScript 2.0 :: Saving Info In Input Textboxes?

Mar 18, 2004

Is there anyway to make save information that people have put in input text boxes. For example they could put the info in and then save it so it will appear next time.

View 1 Replies

ActionScript 3.0 :: Put User Submitted Input Text Into Dynamic Textboxes On Other Frames?

Mar 19, 2011

I have an input text box with the instance inputnameone. On another page I have a dynamic text box with the instance outputnameone. When I press button with the instance "submit", I want the information in inputnameone to go into output name one. From the basic as3 I've been able to learn I've written this actionscript:

submit.addEventListener(MouseEvent.MOUSE_DOWN, transfernameone);
function transfernameone(e:MouseEvent):void {
outputnameone.text = inputnameone.text;

[code]....

View 2 Replies

ActionScript 3.0 :: Have 2 Input Textboxes Where Have Added The Text "< Write Here >"?

Jan 3, 2010

i have 2 input textboxes where i have added the text "< Write here >"PHP Code:instanceName_txt1.text = "< Write here >";instanceName_txt2.text = "< Write here >"; i want it to disappear when i click to write in the textboxas i remember in as2 it went like this

PHP Code:
instanceName_txt1.onSetFocus = instanceName_txt2.text = function(){if (this.text == '< Write here >') this.text = '';}

[code].....

View 3 Replies

ActionScript 3.0 :: Inputbox.text = "" Isn't Working On Input Textboxes

Aug 2, 2010

I have an input textbox on the stage and I can't seem to set its text when I do

Code:
inputbox.text = "A";
inputbox.appendText ("A");
inputbox.htmlText = "A":

The idea is when I click on a movieclip I want the input textbox to show the value of one of that movieclip's properties. Then I can change the value using the textbox if I want to.

View 2 Replies

ActionScript 3.0 :: Displaying Name From Input Field

Jun 14, 2009

inserting the a name from an input text field and displaying it in another movieclip please take a look [code] 1067: Implicit coercion of a value of type String to an unrelated type flash.text:TextField.

View 1 Replies

ActionScript 3.0 :: Displaying User Input In Welcome Message

Feb 8, 2009

The goal is to have the user enter their name in the input text box and then click start. When they click start a ball starts rolling and a welcome message should display "Welcome + name". At first the ball is rolling fine and the name is displayed - but after about 3 seconds the frames sort of flip and "Welcome name" turns into just "Welcome" (name dissapears)

I'm sure it's something really dumb but my eyes are crossing.
- layer 1 is my circle image (myCircle)
- layer 2 is my button (startButton)
- layer 3 is the input field (inputName) and the dynamic field (displayName)

Here's the code:
stop();
var inputName:TextField = new TextField();
inputName.type = TextFieldType.INPUT;
inputName.x=200;
inputName.y=100;
inputName.width=150;
inputName.height=20;
inputName.border = true;
addChild(inputName);
[Code] .....

View 1 Replies

ActionScript 3.0 :: Displaying Input Text In A Different Class?

Apr 3, 2011

I have an Introduction screen class that asks for name entry, when the start button is clicked I have managed it to trace the name that is entered.

Code:
private function startButton(event:MouseEvent):void {
trace("Start button clicked.")
nameEntry = enterName.text;
trace("Hello " + nameEntry);
MovieClip(parent).MainMenu();
}

However, I want to recall this entered name and display it in a dynamic text field in my MainMenu page, which uses a separate class. I don't know how to pass the string into a different class.

View 14 Replies

ActionScript 3.0 :: Flash Displaying Textfield Input On Stage?

Apr 5, 2012

I have code for the user to enter their name in a text box. Once the submit button is clicked I want the name entered to be dispatched with an event as well as displayed on the stage. The reason I want the text field input name to be dispatched is because the text box to enter your name is on the main menu which is loaded and unloaded in order to play through various games.Below is the code to enter your name into the text box.

Code:
var NameTextField:TextField = new TextField();var MyFormat:TextFormat = new TextFormat();
MyFormat.size = 20;
NameTextField.defaultTextFormat = MyFormat;[code].....

View 1 Replies

ActionScript 2.0 :: Dynamic Text Not Displaying Input Inside Movie Clip

Aug 22, 2011

I'm updating a game in a Flash, using Actionscript 2 (what it was originally built in). It's a quiz game with different categories. At the end of each test is a results page showing their score for each of all the categories; each score being saved and displayed each time it's brought up. I need to have a print button added to this page, which I was able to do with

Code:
printButton.onPress = function() {
print(drawingArea, "bframe")
}

And labeling the frame of what I want to print #p. This works, but the drawback is, I can do that on each results page frame for each category; the error that results from multiple frames labeled the same thing, 'causes the dynamic text fields displaying the score to go blank when the print button is clicked. Even if it didn't, it would still print all of the frames with that label, printing multiple copies of the same results screen. Initially I planned to tie all the quizzes to a single results page; one results page, one results frame, only one frame with the #p label, and is the only thing printed.

The problem there is, I need to be able to have a back button that goes back to a point in the category the user just finished; so they can take the test again if they want, or take another part of the test in that category. So my idea was to put all of the dynamic text fields and the print button, inside a movie clip. All the text boxes have maintained their names and have embedding enabled. All of the actionscript, on any level of that frame, has been placed accordingly into the movie clip - and yet the dynamic text boxes will not populate with the score like they do outside the movie clip.

Worst still, the print button wont work at all inside the movie clip. Clearly I'm missing something, but I can't be that far off base in thinking this would work, am I? If I can make the movie clip show the results and work the print button, then I can use instances of the movie clip in as many frames as I need, but the only place the script or label for the print button will exist, is inside the movie clip. This is the script for the button putting the data into the text fields.

Code:
on (release) {
gotoAndStop ("resultsGK"){
warningMsg2 = clear ();
if (saveRecordName_var == "" | saveRecordName_var == undefined){
warningMsg2 = "Name doesn't exist,
[Code] .....

View 1 Replies

ActionScript 1/2 :: Flash Allow Keyboard Input When Displaying Content In Full-screen Mode?

Feb 24, 2010

i have created a page in flash with input text field and a toggle button which implies full screen mode as well as normal mode by including the below script. stage.display = "fullscreen".

Users cannot enter text in text input fields while in full screen mode. All keyboard input and key-related ActionScript is disabled while in full screen mode, with the exception of the keyboard shortcuts that take the viewer out of fullscreen mode Is there any solution to enable the keyboad inputs.

View 2 Replies

Arrays :: Flash - Pushing Or Adding Arrays As Values Into A Multi-dimensional Array?

Jan 21, 2011

I am running into some trouble adding an array into another array to create a multi-dimensional array.The code appears as below:

var slideDataArray:Array = new Array();
var slideShowDataArray:Array = new Array();
slideDataArray[0] = xmlData.SlideShowParameters.SlideShowImagesDirectory;[code]........


I am looking for a means of placing the slideDataArray into a 'slot' or value of slideShowDataArray so that I can in the end pass the slideShowDataArray as a parameter to another function.As of now, the last slideDataArray appears 11 times (the loop runs 11 times) in slideShowDataArray and the way the code is written the slideDataArray is unique every iteration of the loop.

View 1 Replies

Nested Textboxes Access?

Jan 29, 2010

i have a textbox (totaltxt) within a movieclip (link_mc) which is on frame1, and i am trying to access the contents of totaltxt and put it in another textbox called totalround1 in frame2...e.g. if totaltxt = 100 then totalround1 should equal 100 aswellthis is my failed attempt:PHP Code:totalround1.text = Number(link_mc.totaltxt.text);

View 1 Replies

ActionScript 2.0 :: Dynamic TExtBoxes?

Sep 7, 2004

I have been designing dynamic pages with Flash and I can't seem to apply effects such as simple motion tweens and alpha effects to it

View 3 Replies

IDE :: Cannot Use LoadVariablesNum Variables Outside Of Textboxes?

Feb 15, 2010

Does anybody know any reason why I can't use variables loaded from a text file using loadVariablesNum anywhere but in the Var field of a text box? If I try this:

The loadVariablesNum ("textfile.txt",0);it loads the textvariable1=3.14159&variable2=cowfrom the text file, and if I make 2 dynamic text boxes with the Var parameter as variable1 and variable2, they'd have "3.14159" and "cow" show up in them when I run the script. So I know that the textfile is being read and the variables are being loaded.But if I try newvar1=variable1;newvar2=variable2;in my code, and then put newvar1 and newvar2 in my textbbox Var, I get nothing in them. I should be able to assign the newvar variable the same value as variable1, but I can't. trace (variable1);should output the text "3.14159" when run, but it displays "undefined" every time.Every site I have been to says I should be able to access my loaded variable values simply by using variable1, or _root.variable1, or _level0.variable1, but none of these work any differently.

I can assign an instance name to the textbox and then assign a value to that instance name, and if I do that, assuming the instance name is "box")

[Code]...

View 3 Replies

ActionScript 3.0 :: Arrays Of Arrays / Data Providers And Dictionarys

Aug 26, 2009

I've got a bit that loads a big chunk of xml data about products.I push product info into an array(e.g. productArray), then add that array to another array (e.g. allProductsArray)How do I sort those arrays? For instance, if I want to sort the allProductsArray based on the info in productArray[0]?Alternatively, would something other tha an array of arrays be a better route?This loader loads the same sort of info for many different clients, so the bit to sort on will change.

View 5 Replies

ActionScript 2.0 :: Performing A Function On Two Textboxes

Jan 24, 2012

I had an onEnterFrame script that would make a cypher of some letters for you. I thought it would be great if I could wrap the code in a function so I could apply it to multiple textboxes at once. Since doing it (wrong!) it only actually does what its supposed to on one of the textboxes. What am I doing wrong?

To make this work you'll need a two textboxes, one with an instance name of text_one and one called text_two

Actionscript Code:
// The String that will reveal itselfcypher_characters("text_one", 10, 5, 2, text_one);cypher_characters("text_two", 10, 5, 2, text_two);function cypher_characters(characters, time_until_start, time_between, frequency,

[Code].....

View 2 Replies

ActionScript 3.0 :: Can't Remove Textboxes By Using RemoveChild

Aug 2, 2010

The following code are used to generate textboxes for my game, but I couldn't remove all of them by using removeChild. Is there a way to remove them?[code]...

View 2 Replies

ActionScript 3.0 :: Loading Xml Nodes Into Different Textboxes?

Oct 18, 2010

i have a code which i manage to load the xml into an xmlList. What i want to do, and having problems with is sorting out the different nodes inside the xml, so that i can display them in their individual textBox. At this point i am displaying some information in one textbox, but i think i need to change that and go in a different direction. Could anyone have a look at my codeps: i removed the url from the URLRequest cause i wasnt allowed to post links.

Code:
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, onLoaded);

[code]......

View 0 Replies

ActionScript 2.0 :: Any Way To Check Dynamic TextBoxes?

Mar 15, 2005

Any quick way to check a dynamic textbox to see if it has text is there a function to do it?

View 4 Replies

ActionScript 2.0 :: Entering A Number Into Two Different Textboxes?

Sep 5, 2007

I have two input text boxes. I need to enter a number (1900) into the first box then hit the 'Enter' button, then enter a number (50) into the second box right below the first.

After the 'Enter' button is pressed it needs to lock-in the required value, by selectable = false.

My problem is...I can get the first number to work. I type in the number, press 'Enter', it changes the textbox value to selectable = false...everything is good for that part.

But the second number is where I am having trouble, it seems the function is called, but that's it...nothing else happens.

View 5 Replies

ActionScript 2.0 :: Change The Text Of Some Textboxes?

Sep 26, 2007

I am completely stuck on why I cannot change my text. I want to change the text of some textboxes via actionscript on the 1st frame of the main timeline.

I have 3 rows of text (Action, Condition, Standard) in 2 columns. I cannot change the text in the 2nd column at all. [URL]..

View 3 Replies

ActionScript 3.0 :: Parse The Item Associated With Textboxes From Xml

Sep 29, 2010

I'm trying to make a banner whic the user can edit his Preferences in a xml file. My xml file looks like below.

[Code]....

the goal is that i can parse the item associated with textboxes. as you can see i'l try my best but i kinda stuck on the second forloop.

View 2 Replies

ActionScript 3.0 :: Cleare Multiple Textboxes With 1 Function?

Feb 28, 2010

Is if i have a textbox, name_txt, i can clear it with a function[code]....

which is great, but i don't just have one textbox. i have lastName_txt, age_txt, etc. how can i reuse my one function for multiple textboxes?

View 2 Replies

Professional :: Where To Set Fonts For TextBoxes - Character Options?

Oct 11, 2011

In the video tutorials and they use the character option in the properties of textInputs or textboxes or whatever, but I dont have a character option in my properties. All i see is Color Effect, Display, and Component Parameters. So i tried going to text and then to embed fonts but I still get an error saying i need to embed my fonts. Where can I set the fonts for text boxes to use? Is there something wrong with my Flash Professional or what?

View 11 Replies







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