Array with positions, move to position?

peepz,

i have this array with positions:


  storePositions = []
  
  for(i=0; i<ap.length; i++)
  {
   storePositions.push(this.mcTotal["mcItem"+(i)]._x)
  }

and i have this tween method:


   for(i=0; i<this.countZ; i++)
   {
    this._parent._parent["mcItem"+i].tween("_x", here i need the values...., 1);
   }

can somebody let each movieclip go to it’s original position out of the array?

thnx!