Поменял, - тепер скрипт запускается только в таком варианте: Причём увеличение не происходит - работает без увеличения - тоисть что с этим кодом, что без него...

Код:
currentThumb.onRollOver = currentThumb.onDragOver = function()
{
import mx.transitions.Tween;
import mx.transitions.easing.None;
var tween:Tween = new Tween (currentThumb, "_xscale","_yscale", None.easeNone, 0, 40, 0.3, true);
showName_txt.text = this.NAME;
}
сurrentThumb.onRollOut = currentThumb.onDragOut = function()
{
showName_txt.text = "";
}
а в таком варианте он не запускается - выкидывает ошибку...

Код:
currentThumb.onRollOver = currentThumb.onDragOver = function()
{
import mx.transitions.Tween;
import mx.transitions.easing.None;
var tween:Tween = new Tween (currentThumb, "_xscale","_yscale", None.easeNone, 0, 40, 0.3, true);
showName_txt.text = this.NAME;
}
сurrentThumb.onRollOut = currentThumb.onDragOut = function()
{
import mx.transitions.Tween;
import mx.transitions.easing.None;
var tween:Tween = new Tween (currentThumb, "_xscale","_yscale", None.easeNone, 40, 0, 0.3, true);
showName_txt.text = this.NAME;
showName_txt.text = "";
}
Ошибка:

Код:
**Error** Scene=Scene 1, layer=actions, frame=1:Line 145: The class 'mx.transitions.Tween' cannot be imported because its leaf name is already being resolved to imported class 'mx.transitions.Tween'.
import mx.transitions.Tween;
**Error** Scene=Scene 1, layer=actions, frame=1:Line 146: The class 'mx.transitions.easing.None' cannot be imported because its leaf name is already being resolved to imported class 'mx.transitions.easing.None'.
import mx.transitions.easing.None;
Total ActionScript Errors: 2 Reported Errors: 2