我在将程序设置为全屏运行时遇到问题。
我在 flash builder 4.5(使用 flash 11.5)中创建了一个 win 投影仪,我尝试使用 fscommands 来完成它,但结果却是黑屏......有没有首选的方法来设置它以完全运行来自 Flash Builder 的屏幕?
fscommand("fullscreen","true");
fscommand("allowscale","false");
我在将程序设置为全屏运行时遇到问题。
我在 flash builder 4.5(使用 flash 11.5)中创建了一个 win 投影仪,我尝试使用 fscommands 来完成它,但结果却是黑屏......有没有首选的方法来设置它以完全运行来自 Flash Builder 的屏幕?
fscommand("fullscreen","true");
fscommand("allowscale","false");
在这里尝试这个简单的代码:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
applicationComplete="init();">
<mx:Script>
<![CDATA[
import flash.display.StageDisplayState;
private function init():void{
stage.displayState = StageDisplayState.FULL_SCREEN;
}
]]>
</mx:Script>
</mx:Application>
同样在放置此 SWF 文件的 HTML 文件中,将以下内容添加到 Flash SWF 对象:
<param name="allowFullScreen" value="true" />
希望有效!