如何通过滚动HScrollBar滚动水平切片列表?

时间:2012-07-26 09:46:39

标签: actionscript-3 flex flex3

我有一个包含用户图像列表的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 ;

        }

0 个答案:

没有答案