Надо так:

Код:
import mx.transitions.*;
this.slides_mc1.holder0.onRollOver = function (){
var tween_handler:Object = new Tween(this, "_xscale", easing.Zoom, this._xscale, 120, 2, true);
var tween_handler2:Object = new Tween(this, "_yscale", easing.Zoom, this._xscale, 120, 2, true);
};
this.slides_mc1.holder0.onRollOut = function (){
var tween_handler:Object = new Tween(this, "_xscale", easing.Zoom, this._xscale, 100, 2, true);
var tween_handler2:Object = new Tween(this, "_yscale", easing.Zoom, this._xscale, 100, 2, true);
};
Должно заработать.
И еще: импортируй конкретный класс, который пользуешь - нагрузку уменьшишь.

Код:
import mx.transitions.Tween;