如何在flex 4.6窗口应用程序中加载字体

时间:2013-08-08 07:51:20

标签: flex air flex4.6

我有一个我在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();
        }
    }
}

1 个答案:

答案 0 :(得分:0)

我得到的解决方案是首先通过url loader加载字体swf,然后我们得到bytearray.after,只需加载带有加载上下文的加载器类的tge bytearray,其中allowcodeimport设置为true ...