Devo creare una movieclip che sia trascinabile sullo schermo e che attraverso la tastiera si possano modificare le dimensioni: onClipEvent (enterFrame) {
if (Key.isDown(Key.PGUP)) {
this._height = _height+10;
this._width = _width+10;
} else if (Key.isDown(Key.PGDN)) {
this._height = _height-10;
this._width = _width-10;
}
}


Allora io riesco a creare la movieclip e a cambiarle le dimensioni..ma non riesco a spostarla!!!

Altro problema..devo creare un pulsante che resetti tutto allo stato originale!!!
Come si fa???

Qualcuno mi aiuti!!!!!!