更新阵列然后更新阶段

时间:2010-09-10 10:08:56

标签: flash actionscript-3

我正在尝试为简单的产品卷轴编写一些代码。 我有一系列产品项目,当用户单击下一个按钮时,我想删除数组最后一个索引处的项目,将其添加到起始索引,然后使用结果更新阶段。

1 个答案:

答案 0 :(得分:1)

//create a new Array
var item:Array = [];

//add the last element of your Array
item[0] = myArray.pop();

//merge both arrays with the last element as the first element
myArray = item.concat(myArray );

//update the stage with the new value of myArray