Amigo:
 
Mira se me ocurren un par de ideas pero no tengo mucho tiempo, a mí en lo personal se me ocurre algo para darte una idea pero solo te doy las bases el código es el siguiente:    
Código ACTIONSCRIPT:
Ver original- import fl.transitions.Tween; 
- import fl.transitions.easing.*; 
- import fl.transitions.TweenEvent; 
-   
- var i:uint                          = 0; 
- var t:uint                          = 6; 
- var xclips:Array                    = new Array(); 
- var c:uint                          = 0; 
-   
- initthis(); 
-   
- function initthis():void{ 
-     var formato:TextFormat          = new TextFormat(); 
-     formato.font                    = "Verdana"; 
-     formato.size                    = 14; 
-     formato.color                   = 0x000000; 
-     for(i=0; i<t; i++){ 
-         var clip:MovieClip          = new MovieClip(); 
-         var texto:TextField         = new TextField(); 
-         texto.autoSize              = TextFieldAutoSize.LEFT; 
-         texto.defaultTextFormat     = formato; 
-         texto.selectable            = false; 
-         texto.antiAliasType         = AntiAliasType.ADVANCED;        
-         texto.text                  = "Movie "+i; 
-         clip.addChild(texto); 
-         this.addChild(clip); 
-         xclips.push(clip); 
-     } 
-     movingxclip(xclips[c]); 
- } 
-   
- function movingxclip(a:MovieClip):void{ 
-     var moving:Tween = new Tween(a, "x", Strong.easeInOut, 0, 300, 2, true); 
-     moving.addEventListener(TweenEvent.MOTION_FINISH, motionfinish); 
- } 
-   
- function motionfinish(a:TweenEvent){ 
-     c++; 
-     movingxclip(xclips[c]); 
- } 
Solo debes crear un nuevo archivo ActionScript3 y luego copias el código. 
Espero te sea de ayuda.
Saluda Atte.
Claudio Barrera Asencio.