In this tutorial we will see how to display a text in textbox using ObjectUtil class.
Here is the code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="initApp()">
<mx:Script>
<![CDATA[
import mx.utils.ObjectUtil;
private var obj: Object=new Object();
private function initApp():void
{
obj.a="Hello";
obj.b="Hi";
obj.c="Howdy";
}
public function dumpObj():void
{
for(var txt:String in obj)
{
newText.text=ObjectUtil.toString(obj);
}
}
]]>
</mx:Script>
<mx:TextArea id="newText" width="293" height="58" x="52" y="46"/>
<mx:Button id="B" label="Click Me" click="dumpObj()" x="154" y="124"/>
</mx:Application>

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: How to display on textbox using ObjectUtil class
Post your Comment