I've posted a very simple program below. And it doesn't work as I thought it should. Simply - I want to be able to bind a dynamic array to the link bar. When I run this - I got the linkbar with no TEST 1 showing. I'm sure this is a silly problem - 101, right?
Thanks for your advice! <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init();"> <mx:Script> <![CDATA[ [Bindable] private var aLanguage:Array = new Array(); private function init():void{ aLanguage.push("Test 1"); } ]]> </mx:Script> <mx:Canvas> <mx:LinkBar id="tbbLanguage" dataProvider="{aLanguage}" width="294" color="#ffffff" backgroundColor="#000000"/> </mx:Canvas> </mx:Application> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/flex/message.cfm/messageid:5859 Subscription: http://www.houseoffusion.com/groups/flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
