Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
earl919 #1
TextInput data trace
I followed a very good tutorial here:
[url]http://www.adobe.com/devnet/flash/articles/xmlconnector.html[/url]
where xml text data is dynamically bound to TextInput and TextArea
components. The problem I'm having: How can I access the displayed data? If I
try to e.g. trace (tiCost.text); nothing is displayed.
earl919 Guest
-
Using both TAB or ENTER key with textinput fields?
Peter, Thanx, the code was very helpful. But I would like to know how to move between date fields and radio buttons using the Enter key. thanx -
Focusing a TextInput control
Solved this issue: Had to use callLater(), to focus the component during the next event loop. Stefan http://www.justRIA.com/ -
textInput validation question
when i set a text back to empty ie: myText.text="" it is validating and causing the red outline and message box to appear. i have forms that... -
TextInput
How can I detect when the escape key is pressed while a TextInput is focussed to allow the user to cancel changes made to the TextInput.text? It... -
Button and TextInput
Hi everyone, I developing a small component in MX 2004, which contains only one button. The concept is, whenever I click the button I should... -
absurd29 #2
Re: TextInput data trace
If you add the following to frame 1 of your actionScript you can trace it all -
but I haven't figured it out for individual nodes - (am trying to recreate the
tutorial using actionscript so I can access the data!):
var tripslistener:Object = new Object();
tripslistener.result = function(evt:Object) {
trace(xcTrips.results);
};
xcTrips.addEventListener("result",tripslistener);
absurd29 Guest
-
earl919 #3
Re: TextInput data trace
Thanks, absurd, yes this works.
I found another good tutorial which gives all the answers - assigning variables to the nodes:
[url]http://visualintensity.com/flash-tutorials/mx2004/xmlconnector/[/url]
earl919 Guest



Reply With Quote

