it also depends on how you want display those controls, like Vertical or Horizontal or Row*Column.
how you are planing to display those lables. On Tue, Sep 21, 2010 at 3:38 PM, Hidayath <[email protected]> wrote: > Hi Athi, > > you can try it like this > > private function createLabels():void > { > var con:Vbox= new Vbox(); > //*con *is a Vbox container to hold the dynamic labels > //*len *is the numeric input value provided in the input text box. > for(var i= 1;i<len;i++) > { > var lbl:label = new Lable(); > con.addChild(lbl); > } > this.addChild(con); > } > > Thanks, > Hidayath > > > On Tue, Sep 21, 2010 at 12:36 PM, athi <[email protected]> wrote: > >> hi >> >> i am working in flash builder 4. >> I give input (for example 10) in text box .When i click the button at >> the time it produces 10 Labels. >> >> how i do it >> Give me some suggestion >> regards >> athi >> >> -- >> 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]<flex_india%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/flex_india?hl=en. >> >> > > > -- > Thanks and Regards, > S.Hidayath > > -- > 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]<flex_india%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/flex_india?hl=en. > -- 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.

