Hi, I've been looking on the net for a response to my problem without success .
I've made a swf containing a font in the library the class name of my font is "MVerdana".
this swf is loaded in another swf wich display a textfield. the swf is loaded by a Loader. in the commplete event, i'm getting the font class using var loaderInfo:LoaderInfo = event.currentTarget as LoaderInfo; var app:ApplicationDomain = loaderInfo.applicationDomain; fontClass = app.getDefinition("MVerdana") as Class; Font.registerFont(fontClass);
it's working well
but... when I load this swf (the one loading the font and displaying a textfield) using a new ApplicationDomain in the context loader, the textfield doesn't show , and I can see that the font is registered when I use Font.enumerateFonts()
It's working if I load the swf in the currentDomain, but it's not what I want.
I really don't understand what's is going on !!! can someone help me ?