I am writing an application that uses CSS files compiled to SWFs. The different CSS files reference different embedded fonts, for example A.css uses Arial while B.css references Courier. In the main application, when I want to change styles, I call a method with this line:
StyleManager.loadStyleDeclarations (newStyleURL, true, false, ApplicationDomain.currentDomain); However, the result is that the textFields get unusual formatting. For example, they "forget" to line-wrap. They do pick up the new embedded font and other styles. Can anyone suggest what might cause this and what to do about it?

