0

使用 flex 3.5 遇到奇怪的行为。这是一个最小的代码: build.xml 目标:

<target name="player">
        <mxmlc
            file="${APP_ROOT}/player.mxml"
            output="${APP_ROOT}/player_old.swf"
            keep-generated-actionscript="false"
            static-link-runtime-shared-libraries="true"
            debug="false">
            <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
            <source-path path-element="${FLEX_HOME}/frameworks"/>
            <compiler.library-path dir="${APP_ROOT}" append="true">
                <include name="lib"/>
            </compiler.library-path>
        </mxmlc>
</target>

播放器.mxml:

<?xml version="1.0"?>
<PlayerApp
xmlns="*"
xmlns:fx="http://www.adobe.com/2006/mxml">
</PlayerApp>

PlayerApp.as:

package {
import flash.display.Sprite;
import flash.media.Video;
import flash.events.*;

    public class PlayerApp extends Sprite {
        public function PlayerApp() {
            this.loaderInfo.addEventListener(flash.events.Event.INIT, init);
        }

        private function init(e:Event):void {
            this.addChild(new Video());
            trace("loaderInfo: "+root.loaderInfo.width+"x"+root.loaderInfo.height+"\n");
            trace("root stage: "+root.stage.width+"x"+root.stage.height+"\n");
        }
    }
}

物体:

<object width="320" height="240" id="_261178285" name="_261178285" data="player_old.swf" type="application/x-shockwave-flash">
<param name="allowfullscreen" value="true">
<param name="allowscriptaccess" value="always">
<param name="quality" value="high">
<param name="cachebusting" value="true">
<param name="wmode" value="opaque">
<param name="flashvars" value="config={irrelevant}">
</object>

使用调试播放器运行所有这些会产生以下跟踪:

loaderInfo: 500x375

root stage: 320x240

这会导致添加到应用程序的视频(包含在 Sprite 中)仅显示为 250x154 左右大小,因为 500x375 被压缩到页面上包含的 320x240 元素中。

继续问题:是否有可能以任何方式避免此错误,以便 swf 仍可与 flash 版本 9.0.115 一起使用。我也不想在 build.xml 文件中硬编码大小,因为播放器大小可能会在近期发生变化。

免责声明:我使用 flex 3.5 作为 flash 播放器 9.0.115 必须受支持,并且由于企业客户的原因必须支持 flash 9.0.115 (甚至 9.0.115 似乎对某些人要求太多。)我还注意到我可以编译.as 没有 .mxml,但我把它留在这里。

4

1 回答 1

1

看看Stage.scaleMode分别。对象/嵌入标签上的scale属性。

于 2011-11-21T11:45:54.733 回答