you mean the Grandsp5’s map?
[AS]on (press) {
this.onEnterFrame = function() {
_root.square._xscale += 3;
_root.square._yscale += 3;
_root.square._x -= 2;
_root.square._y -= 2;
if (_root.square._xscale>150) {
delete this.onEnterFrame;
}
};
}
on (release) {
delete this.onEnterFrame;
}[/AS]
this will stop when scaling is 150%