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] [mailto:[EMAIL PROTECTED] On Behalf Of jack_freud
Sent: Wednesday, October 04, 2006 11:48 AM
To: [email protected]
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





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