How to display on textbox using ObjectUtil class

In this tutorial we will see how to display a text in textbox using ObjectUtil class.

How to display on textbox using ObjectUtil class

How to display on textbox using ObjectUtil class

     

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>