tjnashster
07-09-2008, 08:14 PM
is there a way this zoom script can be adapted so it zooms in on up arrow press and zooms out on down arrow press.
onClipEvent (load){
this._xscale = this._xscale+10;
this._yscale = this._yscale+10;
if ((this._xscale >= 200) && this._yscale >= 200) {
this._xscale = 200;
this._yscale = 200;
}
}
onClipEvent (load){
this._xscale = this._xscale+10;
this._yscale = this._yscale+10;
if ((this._xscale >= 200) && this._yscale >= 200) {
this._xscale = 200;
this._yscale = 200;
}
}