Duplicate MC

amount = 10;
while (amount>0) {
duplicateMovieClip(_root.abc, “mc”+i, i);
setProperty(“mc”+i, _x, i);
i++;
amount–;
}

how can I set the property of duplicated Mc’s that the distance betwen Mc’s to be 10 px?
help…thanks