A ver, yo hice 3 figuras en el escenario que se llaman: ball_mc, poli_mc y rect_mc. Luego en el Layer puse este código:
Código actionscript:
Ver originalvar con:Number = 0;
function dupliDrag() {
con++;
_root[this._name].duplicateMovieClip("dup"+con,_root.getNextHighestDepth());
_root["dup"+con].startDrag();
this.onReleaseOutside = function() {
_root["dup"+con].stopDrag();
};
_root["dup"+con].onRelease = function() {
this.stopDrag();
};
_root["dup"+con].onPress = function() {
this.startDrag();
};
}
ball_mc.onPress = dupliDrag;
poli_mc.onPress = dupliDrag;
rect_mc.onPress = dupliDrag;
Espero que te sirva.