0

在尝试在 Kindle Fire HD 8.9 上调试时实现 stage.stage3Ds 的答案为空。我尝试将 renderMode 和 detailAndStencil 添加到应用程序 xml 文件中,但在尝试调试设备时出现此错误。

Error occurred while packaging the application:

D:\Flash\Mobile Test\bin-debug\Main-app.xml(10): error 103:            application.initialWindow.depthAndStencil is an unexpected element/attribute

应用程序 xml 文件的 initialWindow 部分如下

<initialWindow>
    <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
    <renderMode>direct</renderMode>
    <depthAndStencil>true</depthAndStencil> 
</initialWindow>
4

1 回答 1

0

看起来 depthAndStencil 选项仅适用于 AIR 3.2 及更高版本。

查看用于生成应用程序描述符文件的模板文件:

[AIR SDK ROOT]\templates\air\descriptor-template.xml

depthAndStencil 的条目首先出现在 AIR 3.2 SDK 附带的模板文件中。

编辑:

确认的。请参阅 3.2 SDK 的发行说明:http: //helpx.adobe.com/flash-player/release-note/release-notes-developer-flash-player.html

于 2013-05-15T22:02:26.460 回答