Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
開始インデックスと終了インデックスを使用してArrayCollectionから選択したアイテムを取得したいのですが、これを行うための事前定義されたメソッドはありますか...よろしくお願いします。
toArrayとsliceを見てください。
var newAC:ArrayCollection = new ArrayCollection( myAC.toArray().slice(10,20) ); //myAc = original ArrayCollection, 10 = startIndex, 20 = endIndex