Now I think about it, you won’t even need the array, just the for loop. So say you have 5 movies loaded, it would be something like (and this won’t be perfect, it’s just out of my head):[AS]on (release) {
for (count=0; count<5; count++) {
unloadMovieNum(count);
}
}[/AS] where count is your loop, and 5 the number of movies you have. If the number of movies is changeable, then store that as a variable and call it in the loop.