unanet
1
i want to try to decrease scale of movie clip. it should be 90 but i don’t know what code to add. it should move slowly down.
_root.myclup11._height = 100;
_root.myclip11.onEnterFrame = function() {_root.myclip11._height -=1};
UN@ [size=1][/size][size=1][/size]
system
2
u should try to do it wit easing like this:
var scalespeed:Number = 5;
_root.myclup11._yscale = 100;
_root.myclip11.onEnterFrame = function() {
this._yscale += (90 - this._yscale)/scalespeed};
}
if u increase the scalespeed it will go slower