lo all… can anybody help with this.
its a friend of mine, he has a webcam, he wants to laod images in flash then remove a particular image, code so far:
counter = 2;
function update() {
newmovie = “JPG”+counter++;
duplicateMovieClip(“JPG”, newmovie, counter);
loadMovie(camurl, newmovie, “GET”);
// NEED CODE HERE TO DELETE MOVIE CLIPS AFTER 5 MORE HAVE BEEN CREATED
}
as you can see he wants to remove mc’s after 5 have been created. any ideas?