0

我有一个在 flex sdk 4.6 中开发的窗口应用程序。我在基于 Web 的应用程序中有相同的版本。在这个应用程序中,我正在加载外部 swf 字体文件。在 Web 应用程序中,一切正常,但字体未在窗口应用程序中加载。

下面是加载字体的代码..

package com
{
    import adobe.utils.CustomActions;

    import flash.display.Loader;
    import flash.display.LoaderInfo;
    import flash.events.Event;
    import flash.events.EventDispatcher;
    import flash.events.IOErrorEvent;
    import flash.net.URLRequest;
    import flash.text.Font;

    import injectors.CentralInjector;

    import mx.core.FontAsset;

    public class LF extends EventDispatcher
    {
        public function LF()
        {

        }
        public function avaliable(style:String):Boolean{
            var embeddedFonts:Array = Font.enumerateFonts(false);           
            for(var i:Number = 0; i < embeddedFonts.length; i++){
                var item:Font = embeddedFonts[i];
                if(item.fontStyle==style){
                    return true;
                }
            }
            return false;
        }
        public function load(url:String):void{
//=====url is http://www.mydomain.com/font1.swf=================
            CustomWaitAlert.show(CustomWaitAlert.WAIT,null,"Loading fonts...");
            var loader:Loader = new Loader();
            var loaderInfo:LoaderInfo = loader.contentLoaderInfo;

            loaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioerror);
            loaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
            loader.load(new URLRequest(url));
        }
        private function ioerror(evt:IOErrorEvent):void{
            this.dispatchEvent(new Event("IOERROR"));
        }
        private function onLoadComplete(evt:Event):void{
            var embeddedFonts:Array = Font.enumerateFonts(false);
            this.dispatchEvent(new Event("COMPLETE"));
            CustomWaitAlert.hide();
        }
    }
}
4

1 回答 1

0

我得到的解决方案是首先通过 url 加载器加载字体 swf,然后我们得到 bytearray。之后,只需使用加载器类加载 tge bytearray,加载上下文将 allowcodeimport 设置为 true...

于 2013-08-11T04:14:18.597 回答