this is to add to my last post...
hi again skdzines, i am having trouble getting the block_mc to unload. i added this code (not in the fla above) to the movie and it didn't work.
rmc = 1;
next_btn.onRelease = function () {
while (rmc > imgCount) {
_root["block_mc"+rmc].removeMovieClip();
rmc++;
}
}
but then i tried...
next_btn.onRelease = function () {
_root.block_mc1.removeMovieClip();
}
and that worked. what is wrong with the first code i have shown here? i don't seem to know where i am going wrong.
secondly, how do i get the next_btn to load the next block_mc's (block_mc9) after it has removed the first eight.
thanks again,
protocol