Hi, i just made banner with sniper scope cursor, and i’d like to create a movie clip (hole) after i press the mouse button. I have 2 problems:
- after second hit, my previous bullet hole MC disapeared
- bullet holes appears above my scope, not under it.
script which i found:
onClipEvent (mouseDown) {
i++;
this.duplicateMovieClip(“bullet”+i, i+1);
_root[“bullet”+i]._x = _root._xmouse;
_root[“bullet”+i]._y = _root._ymouse;
}
plz help me with resolve depth and multi duplicating MC problems.
thx