//把主场景1帧的AS代码改为下面的就行,主要是有个变量名你给打错了,改成正确的变量名就可以了。
MaxBouncer=60;//是MaxBouncer,你给打成了“MaxBonucer”
BouncerIndex=0;
functiononEnterFrame(){
trace(BouncerIndex)
BouncerIndex++;
if(BouncerIndex%2==0){
this.attachMovie("Bouncer","Bouncer"+BouncerIndex,BouncerIndex);
}
if(BouncerIndex>=MaxBouncer){//是MaxBouncer,你给打成了“MaxBouncre”
BouncerIndex=0;
}
}