是否可以为 Win 投影仪制作流畅的布局(全屏受限舞台),但是如果我们单击全屏按钮,舞台将填满整个屏幕,如何?需要帮助!!!
我试过了
fscommand("fullscreen", "true");
fscommand("allowscale", "false");
但结果并不好
在http://www.actionscript.org/forums/showthread.php3?p=1148246#post1148246上查看我相同问题的图片
是否可以为 Win 投影仪制作流畅的布局(全屏受限舞台),但是如果我们单击全屏按钮,舞台将填满整个屏幕,如何?需要帮助!!!
我试过了
fscommand("fullscreen", "true");
fscommand("allowscale", "false");
但结果并不好
在http://www.actionscript.org/forums/showthread.php3?p=1148246#post1148246上查看我相同问题的图片
默认情况下添加这些设置:
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
这适用于您的全屏操作:
stage.displayState = StageDisplayState.FULL_SCREEN;
可能您必须在第一帧上使用此代码
import flash.display.StageScaleMode;
play ();
stage.displayState = StageDisplayState.FULL_SCREEN;