public function resort():void {
while (tickets.numChildren > 0) {
tickets.removeChildAt(tickets.numChildren - 1);
}
for(var i:int = 0; i < ticketsBought.length; i++)
{
var t:TicketCard = ticketsBought[i] as TicketCard;
tickets.addChild(t);
}
}
この関数の実行後、チケットが視覚的に点滅しますが、これは望ましくありません。点滅せずにステージ内のオブジェクトを並べ替える方法はありますか?