Flex在测试时给出空白页
我今天刚开始使用 Flex。我只得到一个空白页面。但是如果我右键单击该页面,我可以看到 FlashPlayer 已加载。
下面是测试代码。
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="500" minHeight="400" width="500" height="400" creationComplete="testFlex()">
<fx:Script>
<![CDATA[
private function testFlex():void{
trace("WORKING!");
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Button x="199" y="199" label="Test" id="test"/>
</s:Application>
我希望至少能看到按钮。
编辑:如果我从 bin-debug 文件夹中打开 html,那么它会显示?但是当我从 flex 测试时,它只显示一个空白页面。
I just started flex today.I am getting just a blank page.But if I right click on the page I can see the FlashPlayer is loaded.
Below is the test code.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="500" minHeight="400" width="500" height="400" creationComplete="testFlex()">
<fx:Script>
<![CDATA[
private function testFlex():void{
trace("WORKING!");
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Button x="199" y="199" label="Test" id="test"/>
</s:Application>
I am expecting to see the button at least.
EDIT:If I open the html from the bin-debug folder then it shows?But when I test from flex it just shows a blank page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我让它工作了。必须安装调试播放器。
I got it working.Had to install the debug player.