hi guys
how to create text box in ActionScript in a for loop
i need some 5 text box to be displayed, i am trying in datagrid itemrenderer
override public function set data(value:Object):void
{
super.data=value;
var s_String:String=firstData.text;
var text1:Text=new Text();
var
arr_Array:Array=s_String.split(",");
for(var
i:int;i<arr_Array.length;i++)
{
trace("arr_Array[i].toString()",arr_Array[i].toString());
text1.text+=arr_Array[i].toString();
}
vBox.addChild(text1);
}
i need all datas to be displayed in textbox and add to vbox
please help
--
Karthik.k
Mobile - +91-9894991640
http://kkarthikresume.blogspot.com/
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---