Hi, I can get list with vertical scrolling working, although it’s not obvious that there is a scrollbar in some cases.
But I’m unable horizontal lists to work. I may be missing something or this may be a bug. Anyone got this to work? I was trying to make a horizontal list like so: <?xml version="1.0" encoding="utf-8"?> <js:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:js="library://ns.apache.org/flexjs/basic"> <js:valuesImpl> <js:SimpleCSSValuesImpl/> </js:valuesImpl> <js:beads> <js:ApplicationDataBinding /> </js:beads> <fx:Script><![CDATA[ [Bindable] public var items:Array = ["one","two","three","four","five","six","seven","eight","nine","ten"]; ]]></fx:Script> <js:initialView> <js:View percentWidth="100" percentHeight="100"> <js:List dataProvider="{items}" height="30" width="200"> <js:beads> <js:HorizontalLayout /> </js:beads> </js:List> </js:View> </js:initialView> </js:Application> It compiles but the text wraps over two lines and no horizontal scroll bar shows. I also note that with list the cursor keys and space bar don’t work as i would of expected. Thanks, Justin