2 Replies Latest reply: Sep 29, 2007 9:49 AM by kglad RSS

    Dynamic Text Disappears

    Nickels55 Community Member
      Using this technique:
      var textVar:LoadVars = new LoadVars();
      textVar.load("about.txt");
      textVar.onLoad = function() {
      _global.dyn1 = (textVar.headline);
      _global.dyn2 = (textVar.details);
      my_mc.dyntxt.html = false;
      my_mc.dyntxt.htmlText = dyn1+" "+dyn2;

      };

      The dynamic text populates just fine. But when I click on the text field an embed the fonts, this stops working???
      Anyone know why embedding fonts makes dynamic text disappear? Any way to avoid this...
      I want to skew dynamic text, which is why it needs to be embedded.