在 VSCode 中成功编译 Royale 项目,但 index.html 在 Chrome 中显示空白屏幕。
按照 https://github.com/BowlerHatLLC/vscode-as3mxml/wiki/Install-the-ActionScript-and-MXML-extension-for-Visual-Studio-Code的说明 并成功设置 VSCode。在没有 Jewel 的情况下运行良好,但如果代码包含 Jewel,即使编译成功,Chrome 中构建的 index.html 也可以显示空白屏幕。
以下适用于浏览器 Chrome。
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:js="library://ns.apache.org/royale/express">
<js:initialView>
<js:View>
<js:Label text="Hello World" x="100" y="100"/>
</js:View>
</js:initialView>
</js:Application>
以下不适用于只有空白屏幕的 Chrome。
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:j="library://ns.apache.org/royale/jewel"
xmlns:html="library://ns.apache.org/royale/html"
xmlns:js="library://ns.apache.org/royale/express">
<j:Card width="350">
<html:H3 text="Jewel CheckBox"/>
<j:CheckBox text="Not Checkbox"/>
<j:CheckBox text="Checked" selected="true"/>
<j:CheckBox text="Disabled">
<j:beads>
<j:Disabled/>
</j:beads>
</j:CheckBox>
<j:CheckBox text="Checked and Disabled" selected="true">
<j:beads>
<j:Disabled/>
</j:beads>
</j:CheckBox>
</j:Card>
</js:Application>
没有错误信息。期望在浏览器中看到复选框,代码是从 Tour de Jour 复制的,它在 Moonshine IDE 中工作。