ステージを全画面表示にするコードがありますが、ファイルの .swf バージョンを使用すると機能しないようです。.exe ファイルとしてエクスポートすると機能しますが、私の機能は次のとおりです。
function toggleFullScreen() {
Stage.displayState = (Stage.displayState == "normal") ? Stage.displayState = "fullScreen" : Stage.displayState = "normal";
}