fai la tua bella striscia d'immagini e metti tutto all'interno di un clip

sul pannello proprietà sulla voce "nome istanza"
metti come nome del clip "a" (senza apicetti)


una volta fatto ciò metti in un fotogramma queste actions



meta=Stage.width/2
max=Stage.width
min=0
velocita=30

duplicateMovieClip(_root.a,"b",1)



this.onEnterFrame=function(){
x=_root._xmouse-meta
if (x!=0){
_root.a._x=_root.a._x-x/velocita
_root.b._x=_root.b._x-x/velocita
}

if (_root.a._x<min+_root.a._width/2){
_root.b._x=_root.a._x+_root.a._width
}

if (_root.b._x<min+_root.a._width/2){
_root.a._x=_root.b._x+_root.b._width
}



if (_root.a._x>max-_root.a._width/2){
_root.b._x=_root.a._x-_root.a._width
}

if (_root.b._x>max-_root.a._width/2){
_root.a._x=_root.b._x-_root.b._width
}


}