I answered my own question, this code do the job.
Code:
// (user setings, will be changed latter for database values)
var xpos = -385;
var ypos = 88;
var yspace = 5;
// Duplicate the dots and place them apart on the X & Y axis
for (i=1; i<=finalCountNum; i++) {
// duplicate movie clip
duplicateMovieClip(_root.navigation.main.map.dot, "dot"+i, i);
// organize the clones
setProperty("_root.navigation.main.map.dot"+i, _x, xpos);
setProperty("_root.navigation.main.map.dot"+i, _y, ypos);
// Add more space
ypos += yspace;
}
Bookmarks