我有一个包含用户图像列表的 Tile 列表,还有一个 HScrollBar 组件。现在,如果我滚动 Hscroll 栏,i want to also scroll the tile list
. 而且我还希望 HScrollBar 的拇指根据平铺列表的数据提供者中的元素数量自动调整其宽度。我该怎么做?
这就是我的代码
<components:ExtendedTileList id="lstExpert" horizontalScrollBarStyleName="horizontalScroll" verticalScrollPolicy="off" horizontalScrollPolicy="off"
dataProvider="{expertsOnline}" height="80" width="100%" direction="vertical" maxRows="1"
itemRenderer="ExpertItemRenderer">
</components:ExtendedTileList>
<mx:HScrollBar id="customScrollExpert" styleName="horizontalScroll" minScrollPosition="0" lineScrollSize="20" pageScrollSize="20" y="68"
scroll="hscrollbar1_scrollHandler(event)" visible="true" width="110%" height="5"/>
我的滚动事件处理程序是
protected function hscrollbar1_scrollHandler(event:ScrollEvent):void
{
lstExpert.horizontalScrollPosition=event.target.scrollPosition ;
}