El código es el siguiente:
Código:
Código:
  
onClipEvent (load){ 
    accel = _root.accel; 
    rate = _root.rate; 
    targetwidth = _root.stand_value; 
} 
onClipEvent (enterFrame){ 
    width = width * accel + (targetwidth - this._width) * rate; 
    this._width = this._width + width; 
    if (Math.abs(targetwidth - this._width) < 1) { 
        this._width = targetwidth; 
    } 
    x = x * accel + (targetx - this._x) * rate; 
    this._x = this._x + x; 
    _parent.linea._x = this._x + 7; 
    _parent.titulo._x = _x - this._width / 2; 
    _parent.titulo._x = int(_parent.titulo._x) + 0.500000; 
}
Alguien me puede ayudar, por favor?
Gracias
 
