El código que tengo en la línea de tiempo principal es:
fscommand("fullScreen",true);
El código que tengo en el Movie Clip es:
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)){
this._x += 4;
this.gotoAndStop("right");
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)){
this._x -= 4;
this.gotoAndStop("left");
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)){
this._y -= 4;
this.gotoAndStop("up");
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.DOWN)){
this._y += 4;
this.gotoAndStop("down");
}
}