|
First thing...I'd enclose your two conditionals inside brackets:
if ((bluecircle1._x < 75 || bluecircle1._x > 475) && (bluecircle1._y < 20 || bluecircle1._y > 320)) {
Secondly, you can only use removeMovieClip() on a movieclip that's assigned a positive depth, i.e. a movieclip created with attachMovie(), duplicateMovieClip(), or createEmptyMovieClip().
If you're trying to remove a movieclip that you've placed onto the stage yourself, you will have to swap its depth first:
bluecircle1.swapDepths(positive_depth_integer_here );
bluecircle1.removeMovieClip();
__________________
©2006 GlosRFC - Searching 8,168,684,336 brain cells
|