平板玩口袋忍者 进不了 黑屏 中间有一串英文
发布网友
发布时间:2023-08-09 11:52
我来回答
共2个回答
热心网友
时间:2023-10-05 08:17
这个其实是Flash报的“ErrorEvent:。 text=Error #3702: Context3D 不可用”错误被Starling变了一下。
解决方法:找到项目文件夹中的html-template,并找到index.template.html,右键使用TextEditor编辑,在
params.allowfullscreen=”true”;后面加上params.wmode = "direct";最好下面的embed也这样配置下 <param name="allowFullScreen" value="true" />后面加 <param name="wmode" value="direct" />
如果是手机项目,没有index.template.html文件,则在项目的app.xml里面改(一般是项目名-app.xml文件)。在“</initialWindow>”前面增加两行
<renderMode>direct</renderMode>
<fullScreen>true</fullScreen>
就算已经有<fullScreen>true</fullScreen>了也要在renderMode后面加一行,要不然会出现不报错的白屏。
http://xuzonglian.blog.163.com/b ... 658822012627550737/
热心网友
时间:2023-10-05 08:18
装最新版的bluestacks就可以了