Code:
onClipEvent (enterFrame) {
if (Key.isDown(Key.DOWN)) {
this._y = this._y-((this._yscale/8)+10);
}
if (Key.isDown(Key.UP)) {
this._y = this._y+((this._yscale/8)+10);
}
if (Key.isDown(Key.RIGHT)) {
this._x = this._x-((this._xscale/8)+10);
}
if (Key.isDown(Key.LEFT)) {
this._x = this._x+((this._xscale/8)+10);
}
if (Key.isDown(Key.PGUP)) {
this._xscale = this._xscale+10;
this._yscale = this._yscale+10;
}
if (Key.isDown(Key.PGDN)) {
this._xscale = this._xscale-10;
this._yscale = this._yscale-10;
}
if (Key.isDown(Key.BACKSPACE)) {
_root.gotoAndStop(3);
}
}