我必須做的事情是,我需要添加一個50%的阿爾法在9圈豁免第五個,繼承人我到目前爲止嘗試...我缺少什麼東西?順便說一句,如果我用「休息」來代替「繼續」,它就可以完美地工作。(Actionscript 3 noob)你如何正確使用「繼續」?
function rendreAlpha(pEvt:MouseEvent)
{
for (var i:int=1; i<=9; i+=1)
{
trace(i);
this["balle" + i + "_mc"].alpha = 0.5;
if (i == 5)
{
continue;
}
}
}
btn2.addEventListener(MouseEvent.CLICK,rendreAlpha);
謝謝回答! – user1953511 2013-03-07 03:29:48