Another Flash Search
Another Flash Search
Out of context: Reply #4
- Started
- Last post
- 16 Responses
- stuff0
here's some code
on your _mc
onClipEvent(load){
Speed = 5;
target_xscale = target_yscale = 100;
}
onClipEvent(enterFrame){
_xscale += (target_xscale - _xscale)/Speed;
_yscale += (target_yscale - _yscale)/Speed;
}on your button:
on(release){
scaler_mc.target_xscale = 200;
scaler_mc.target_yscale = 200;
}