Flex在测试时给出空白页

发布于 2024-10-29 03:27:12 字数 920 浏览 5 评论 0原文

我今天刚开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ㄖ落Θ余辉 2024-11-05 03:27:12

我让它工作了。必须安装调试播放器。

I got it working.Had to install the debug player.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文