Buenas, gracias de antemano por su ayuda, tengo codigo AS2 que encontre de una galeria pero el problema es que realiza un movimiento circular lo que necesito que se se mueva lineal de izquierda a derecha mostrando 3 imagenes al iniciar espero me puedan ayudar, es urgente.

Saludos

Código :

stop();
var folder:String = "imagenes/";   // a folder for thumbnail files + an XML file
var total:Number;
var radiusX:Number = 225;
var radiusY:Number = 20;

var centerX:Number = 215;
var centerY:Number = 50;

var speed:Number = 0.002;

tn_group_mc._visible = false;
_parent.fm_label.text = ""; _parent.fm_url.text = "";

var xml:XML = new XML();
xml.ignoreWhite = true;

xml.onLoad = function()
{
   var nodes = this.firstChild.childNodes;
   total = nodes.length;
   
   for( var i=0; i < total; i++)
   {
      var t = tn_group_mc.duplicateMovieClip("tn"+i, i);
      t.angle = i * ((Math.PI*2)/total);
      t.onEnterFrame = mover;
      t.tn_mc.inner.loadMovie( folder + nodes[i].attributes.filename );
//      t.tn_reflection_mc.inner.loadMovie( folder + nodes[i].attributes.filename );
      t.fm_label = nodes[i].attributes.label;
      t.fm_url = nodes[i].attributes.url;
   
      t.fm_button.onRollOver = function()
      {
         _parent.fm_label.text =  "Title: " + this._parent.fm_label;
         _parent.fm_url.text = "URL: " + this._parent.fm_url;
      }
      t.fm_button.onRollOut = function()
      {
         _parent.fm_label.text = "";
         _parent.fm_url.text = "";
      }
      t.fm_button.onRelease = function()
      {
         getURL(this._parent.fm_url,"_blank");
         //"imagenes/" + 
      }
   }
}
xml.load("galerias.xml");

function mover()
{
   this._x = Math.cos(this.angle)* radiusX + centerX;
   this._y = Math.sin(this.angle)* radiusY + centerY;
   var s = this._y /(centerY+radiusY);
   this._xscale = this._yscale = s*100;
   this.angle += this._parent.speed;
   this.swapDepths(Math.round(this._xscale)+100);
}
this.onMouseMove = function()
{
   speed = (this._xmouse-centerX) * 0.0001;
}