Read about item renderers. You can put anything you want into a List or Tree.

 

- Gordon

 


From: [email protected] [mailto:[email protected]] On Behalf Of Steve Kellogg @ Project SOC
Sent: Wednesday, October 04, 2006 3:30 PM
To: [email protected]
Subject: RE: [flexcoders] Re: Dynamically adding components to a panel?

 

I have a similar question. I need to put WRAPPED TEXT into the cells of a
List or Tree.

Is it possible to AddChild to a LIST so that there's an actual UIComponent
as a cell's graphics?

Best Regards,

Steve

-----Original Message-----
From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On
Behalf Of jack_freud
Sent: Wednesday, October 04, 2006 2:38 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re: Dynamically adding components to a panel?

Thank you all - I was missing the addChild() concept. Works like a charm.

--- In [EMAIL PROTECTED]ups.com, "Dustin Mercer" <dustin.mercer@...>
wrote:
>
> The addChild method of Panel is what you need. Here is a quick (non
> tested, on the fly, don't take literal) example, but It should get you
> on the right path.
>
>
>
> <mx:Script>
>
> <![CDATA[
>
> Private function addPanelChild() : void {
>
> var button : Button = new Button();
>
> button.label = "test";
>
> testPanel.addChild(button);
>
> }
>
> ]]>
>
> </mx:Script>
>
>
>
> <mx:Button label="test" click="addPanelChild();" />
>
>
>
> <mx:Panel id="testPanel">
>
> </mx:Panel>
>
>
>
> ________________________________
>
> From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On
> Behalf Of jack_freud
> Sent: Wednesday, October 04, 2006 11:48 AM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] Dynamically adding components to a panel?
>
>
>
> I'm still very new to Flex so what I thought should be hard is easy and
> what I thought should be easy is hard!
>
> I'm trying to find out how, to make an easy example, by pressing a
> button, another new button would appear in the panel.
>
> Ultimately I want to make a kind of toolbar or palette, where I could
> drag a shape from the palette into the workspace, and a copy of that
> shape would remain where I performed the drop.
>
> I can't find any examples that do anything like this.
>
> Thanks for anyone's help or direction.
>

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links

__._,_.___

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





SPONSORED LINKS
Software development tool Software development Software development services
Home design software Software development company

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

Reply via email to