Hi,
It sounded as though you were using a motion tween in a movieclip to achieve the scale. If your using actionscript , you would need to establish the bounds for the scale effect. If your scaleing your MC from the main timeline, it wont effect the playing of the MC. You can control that in setting the bounds.........
Code:
if (_root.mcName._xscale >=150) {
_root._xscale = 150;
_root.mcName.gotoAndStop('someFrameLabel');
}else if (_root._yscale>=150) {
_root._yscale = 150;
_root.mcname.gotoAndStop('someFrameLabel');
}else{
_root.mcName.play();
}
If your using width and height properties to scale the clip, setting the bounds is the same, just change methods.
Bookmarks