troops,
im not sure how what im doing wrong here. im trying to set x cords which im pulling from an array ‘xPos’. setproperty will not work when using an array but will work using the random method (as commented out below).
anyone got any idea what i am doing wrong?
var xPos:Array = Array([188], [286], [687])
var num:Number = 2
for (i=0; i<num; i++) {
duplicateMovieClip(mymc, "mymc"+i, this.getNextHighestDepth());
var xNum:Number = xPos*
//var xNum:Number = random(700);
setProperty(eval("mymc"+i), _x, xNum);
}
cheers,