私はいくつかのコードを手に入れました:
...
<fx:Declarations>
<s:Animate id="toRight" target="{cp.layout}">
<s:SimpleMotionPath property="horizontalScrollPosition" valueFrom="{cp.layout.horizontalScrollPosition}" valueTo="{cp.layout.horizontalScrollPosition+42}"/>
</s:Animate>
</fx:Declarations>
....
....
<s:List id="cp" horizontalScrollPolicy="off" itemRenderer="com.mRenderer" horizontalCenter="1" verticalCenter="1" change="changeEvt(event)" borderAlpha="0" width="458" height="65" initialize="initList();" >
.....
そのアニメーションを使用して、リスト内の矢印で動きを滑らかにします。
しかし、私はいくつかの警告を受けました:
データバインディングは、「レイアウト」への割り当てを検出できません。
リストにバインドできないレイアウトを知っています。ただし、カスタム クラスではありません。どうすればそれを防ぐことができますか?