I have a movie that loads other movies into a placeholder movieclip. I noticed that the movies continue to build over each other instead of replacing the previous one. I wanted to do something with removeChildAt() to prevent this. I tried:
if (holder.content != null) {
holder.removeChildAt(0);
}
but that didn’t work. How can I remove the previous movie?