ActionScript 2.0 :: Unselecting Textboxes (and Detecting If They Are Selected)?
Sep 30, 2010
you can only change the color if you hit enter. I need a way to detect and run the function if a textbox becomes unselected. Also, I'd like it if the textbox could become unselected if I clicked outside of it (rather than having to click on another textbox).
I have a menu with many sub menus. I need to change the color of the selected button and then move on to the sub menu. My menu is horizontal and now it's not obvious the path that you follow.
Is there any way to disable a few columns for a particular row in flex datagrid?
I have a datagrid with about 10 or more columns, say for example a few column names are: Item Id, Item Name, Item Status and VerifiedState. Initially I want the column Verified State to be disabled.
Now When the value of the column, Item Status is Review Passed for a particular row, I want the column VerifiedState to be enabled and editable. Is that possible in Flex datagrid.
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);
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.
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")
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].
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,
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]...
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);
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.
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]..
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.
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?
I have developed a Flash application for a client (wedding RSVP) and implemented it on the web. She complains that the textboxes and radio buttons disappear on IE6.
[URL]
don't submit the RSVP, as I don't want to spam my client, but just tell me if you see the radio buttons and if you can fill out the textboxes.
I'm loading a set of images and text from an XML file.I have the images loading into empty MovieClips created dynamically using 'createEmptyMovieClip', and I can get the text into dynamic textboxes that already exist on the timeline, but this isn't exactly what I want.
What I wan't to do, is to pull the text from the XML directly into dynamic textboxes at runtime, in the same way as the images.I've read today about 'createEmptyTextField', but I can't get it to work.
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.
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:
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.
I have 7 Dynamic Text Boxes, each with a numeric value.. I need to add them together. Total = (ST2 + DO + GA + BO + CT + HT + TI);
This makes it 0000000 (Assuming each Dynamic Text had a 0 in it) Total = (ST2 ++ DO ++ GA ++ BO ++ CT ++ HT ++ TI); Gives errors. How do I do Simple Addition? It's been so long.
I have two InputText boxes (Flash CS5 AS3). I will perform calculations with the values that are placed inside the boxes. How can I turn their values into numbers? I will eventually restrict the boxes to numeric values only.
I am loading text dynamically into some dynamic textfields. The text I am loading into them overflows. How do I make the textboxes vertically scroll enabled?
im trying to read values from a mysql database into different textboxes but as at now all the textboxes are filled with the same thing which is the first item of the database. This is not what i want. What i want is for the text boxes to be filled with the different items of the database. Attached to this message is the php code i have and the actionscript code
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?