I have an actionscript 3 based website that is loading font outlines dyncamically, from external font swfs, using a common technique.
...
var FontLibrary:Class = e.target.applicationDomain.getDefinition("font") as Class;
Font.registerFont(FontLibrary.fontClass);
Everything works fine until I attach assets from an swc containing text with the same font. At which point only the outlines from the swc are used. So for exampe, if the swc has a dyncamic TextField, containing the letters "abc" then only those letters will display in the website and not the entire alphabets that where previously loaded dyncamically from the font swf.
Has anyone encountered this and found a solution?