si che stupido lo stavo facendo.. eheh sorry.. infatti prende le proprietà.. vedo che il mouse cambia tipologia in relazione al on release.. ma non fà la action.. o meglio la fà ma non vedo cambiamenti...
??
posto il codicello:
codice:
_root.createEmptyMovieClip("container",1);
for(i=1;i<=6;i++){
_root.container.attachMovie("nome"+i,"nuovo"+i,1+i);
_root.container["nuovo"+i]._height = eval("_root.nome" add i add "._height");
_root.container["nuovo"+i]._width = eval("_root.nome" add i add "._width");
_root.container["nuovo"+i]._x = eval("_root.nome" add i add "._x");
_root.container["nuovo"+i]._y = eval("_root.nome" add i add "._y");
}
_root.container.onRelease = function() {
this._x = Stage.width/2;
this._x = Stage.height/2;
this._y = Stage.width/2;
this._y = Stage.height/2;
setProperty(this, _xscale, this._xscale + 50);
setProperty(this, _yscale, this._yscale + 50);
}