Hi All,
I am developing an Flex App.. in my App, I used 3 text boxes and 2 labels to
display the text in the
labels and textboxes I need to use Remote Object method. in
remoting-config.xml described the description
for java class.
In mxml function for ResultHandler is used like this
var myString:String= new String();
myString=event.result.toString();
Alert.show("Data: " +myString);
the whole data is displaying at a time in Alert.
But I need to display the fields in particular specified textboxes and
Labels in mxml page.
Can help me how to achieve this.
--tomt