Question
Templating and IDE
Hello,<br /><br />I am trying to use templating following the Flex 3 doc here:<br />http://livedocs.adobe.com/flex/3/html/help.html?content=templating_3.html <br /><br />It works when I run the program, but on Flex IDE 3, the visual designer view doesn't show any control I added in MyComp:MyTemplateComponent! In the flowing example, the <mx:TextArea> and <mx:LinkButton> are not visible in the designer:<br /><br /><?xml version="1.0"?><br /><!-- templating/MainTemplateLink.mxml --><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" <br /> xmlns:MyComp="myComponents.*"<br /> height="700" width="700"><br /><br /> <mx:Panel paddingTop="10" paddingBottom="10" <br /> paddingRight="10" paddingLeft="10"><br /> <br /> <MyComp:MyTemplateComponent id="myTComp2"><br /> <MyComp:topRow> <br /> <mx:TextArea text="top component"/><br /> </MyComp:topRow><br /> <MyComp:bottomRow><br /> <mx:LinkButton label="Link 1"/> <br /> <mx:LinkButton label="Link 2"/><br /> <mx:LinkButton label="Link 3"/><br /> </MyComp:bottomRow><br /> </MyComp:MyTemplateComponent><br /> </mx:Panel><br /></mx:Application><br /><br />Did I do something wrong or is this a IDE bug ? <br /><br />Thanks,<br /><br />-toni
