Problem

I have managed to duplicate mc’s and make them move across the screen. The object is to aviod these mc’s. However, I cannot get it so that when the mc’s hit the mc you control, that it goes to the next frame. Can someone help me?

have you tryed hittest

Yes I already tried using a hitTest.

Did you use duplicate movieClip ?

Cause if you did, I recommend you to use AttachMovie instead, it’s a better pratice when you’ll pass to AS3 (God, i hate duplicateMovie :P). Anyway,

For your problem, can you show me the copde for the collision detection ?

Thanks

Lachhh

I think it would be much easier to just show you the problem. Here is the file. What I want to happen is that when the MC you control hits any of the circles it will disapear and goto the next frame. Right know all that happens is that if the MC hits the original circle, it will disapear. I want it so that if it hits any of the copies of the original it will disapear, and goto next frame. Thanks:)

Ok i,ll try to check at home, i’m in work right now

Lachhh

 if(this.hitTest(_root.fly)){
_root.fly.swapDepths(_root.getNextHighestDepth());
_root.fly.removeMovieClip();
_root.nextFrame()
}

add this code to “pt” and delete the code on “fly” that should do the trick

Thank You!

happy to help