What you could do is put all the arrows in a movieclip and then use a 'for' loop to control all the arrows.
I am going to use TweenMax for this:
http://www.greensock.com/tweenmax/Import com.greensock.*
import com.greensock.easing.*
var len:int= mcHoldingYourArrows.numChi
ldren
for (var i:int=0; i<len; i++) {
var mc:MovieClip=MovieClip(mcH
oldingYour
Arrows.get
ChildAt(i)
)
//mc is a new name and does not have correspond to existing movieclips, but has to be used always //when reffering to the MC that hold your arrows.
TweenMax.to(mc, 2, {x: yourNewXpositionAsAnumber,
ease:Back.easeOut})
mc.addEventListener(Event.
ENTER_FRAM
E, ent)
}
function ent(e:MouseEvent) {
var mc:MovieClip=MovieClip(e.t
arget)
}