flex多列火花列表

时间:2013-10-25 14:12:42

标签: ios actionscript-3 flex flash-builder mxml

我有一个列表,我想以特定的像素数水平移动。 它将是一个列表,显示前3个项目,但滚动时,一次只能移动一个。

这是我的代码:

<s:List id="list_recipes" width="100%" 
            pageScrollingEnabled="true" change="list_recipes_changeHandler(event)"
            verticalScrollPolicy="off" horizontalScrollPolicy="on" skinClass="skins.PagedListSkin"  contentBackgroundAlpha="0" itemRenderer="renderer.ItemRecipe">
        <s:layout>
            <s:TileLayout id="layout_recipe" columnWidth="200" useVirtualLayout=""
                          requestedRowCount="1" requestedColumnCount="-1" rowHeight="260"
                          horizontalGap="0" verticalGap="0" />

        </s:layout>
    </s:List>

谢谢

1 个答案:

答案 0 :(得分:0)

在列表的鼠标滚轮事件中,您可以设置delta,它将根据您的要求移动列表。

protected function list_recipes_mouseWheelHandler(event:MouseEvent):void
        {
            event.delta *= 10; 
            //It will multiply the delta 10 times
                            //you can use + for addition in place of *
                            //adjust the value that will suite your requirement

        }