Flex Builder:生成 html 包装器参数

发布于 2024-08-28 19:58:55 字数 1644 浏览 2 评论 0原文

如何使用 Flex Builder 设置 html 包装器的嵌入参数?

例如,我想直接从 Flex Builder 生成允许全屏的代码,这样我就可以正确调试。

我在哪里可以找到这些参数?

谢谢

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
            id="${application}" width="${width}" height="${height}"
            codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
            <param name="movie" value="${swf}.swf" />
            <param name="quality" value="high" />
            <param name="bgcolor" value="${bgcolor}" />
            <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowfullscreen" value="true" />
            <embed src="${swf}.swf" quality="high" bgcolor="${bgcolor}"
                width="${width}" height="${height}" name="${application}" align="middle"
                play="true"
                loop="false"
                quality="high"
                allowfullscreen="true"
                allowScriptAccess="sameDomain"
                type="application/x-shockwave-flash"
                pluginspage="http://www.adobe.com/go/getflashplayer">
            </embed>
    </object>






  /* fullScreen */
    public function fullScreen():void {
        Application.application.stage.displayState = (!isFull) ? StageDisplayState.FULL_SCREEN : StageDisplayState.NORMAL;
        if (isFull) {   

             isFull=false;
        } else {    
            //Application.application.stage.displayState = StageDisplayState.FULL_SCREEN;   
            isFull=true;
        }

        debugF.text = isFull.toString();
    }

how can I set embed parameters for html wrapper using Flex Builder ?

For example, I would like to generate the code that allows fullscreen, directly from Flex Builder, so I can debug properly.

Where can I find these parameters ?

thanks

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
            id="${application}" width="${width}" height="${height}"
            codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
            <param name="movie" value="${swf}.swf" />
            <param name="quality" value="high" />
            <param name="bgcolor" value="${bgcolor}" />
            <param name="allowScriptAccess" value="sameDomain" />
            <param name="allowfullscreen" value="true" />
            <embed src="${swf}.swf" quality="high" bgcolor="${bgcolor}"
                width="${width}" height="${height}" name="${application}" align="middle"
                play="true"
                loop="false"
                quality="high"
                allowfullscreen="true"
                allowScriptAccess="sameDomain"
                type="application/x-shockwave-flash"
                pluginspage="http://www.adobe.com/go/getflashplayer">
            </embed>
    </object>






  /* fullScreen */
    public function fullScreen():void {
        Application.application.stage.displayState = (!isFull) ? StageDisplayState.FULL_SCREEN : StageDisplayState.NORMAL;
        if (isFull) {   

             isFull=false;
        } else {    
            //Application.application.stage.displayState = StageDisplayState.FULL_SCREEN;   
            isFull=true;
        }

        debugF.text = isFull.toString();
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

尽揽少女心 2024-09-04 19:58:55

您必须手动修改 html 包装器,因为只能从 FB 界面配置几项内容(例如 Flash 播放器版本、深度链接)。或者您可以修改模板文件。您可以在 .metadata.plugins\com.adobe.flexbuilder.project\html-templates\ 中找到它们

You will have to modify your html wrapper by hand, because only several things (like flash player version, deep linking) can be configured from the FB interface. Or you can modify the template files. You can find them in .metadata.plugins\com.adobe.flexbuilder.project\html-templates\

与酒说心事 2024-09-04 19:58:55

这很容易。

每个项目都包含带有index.template.html 文件的“html-template”文件夹。
根据您的需要更改此文件。

It's very easy.

Each project contains "html-template" folder with index.template.html file.
Change this file according to your needs.

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