作为一个 17 岁的孩子,我已经使用 Flash 工作了几天,因为我一直在努力简化我的代码。有什么方法可以更改数组中的所有对象以匹配具有单个代码的属性?
这是我目前正在使用的。
var caseArray:Array = new Array(5); caseArray = [CaseBlack50, CaseWhite50, CaseRed50, CaseBlack75, CaseWhite75];
var A01:Number = 0;
while (A01 < 5){caseArray[A01].x = -500; A01++}
我也可以这样做:
caseArray[0].x = -500;
caseArray[1].x = -500;
caseArray[2].x = -500;
caseArray[3].x = -500;
caseArray[4].x = -500;
有什么办法可以把它变成这样的东西吗?
caseArray[ALL].x = -500; //or
caseArray[0,1,2,3,4].x = -500 //or
caseArray.x = -500
提前致谢!