The “for” statement doesn’t actually have a function for emitting values. You could miss out the number seven by using an additional “if” statement to check it 7 is the current number in the for loop or not. Try using this code…
for (i = 0; i <= 20; i ++){
if (i != 7) {
newMovieName = "movie" + i;
this[newMovieName].gotoAndPlay("start");
}
}
See how it works? If “i” is not equal to seven then it executes your code, otherwise it does nothing and moves onto the next loop (where i equals 8).