I’ve created a FontManager singleton class. This simply loads an swf that contains fonts, and via applicationDomain, sets those fonts to be used throughout my application. Since the fonts being used are grabbed via reference, I never have to add the loader or the loaderinfo.content to the stage - it all just exists in memory.
I believe loader.unload(); does not work if the loader is not added to the display list - so, how can I verify that the loaded fonts are cleared from memory when I need them to be?
will this suffice, granting that I don’t have reference to the loader any place else?
loader = null;