/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
[Embed(source='C:/WINDOWS/Fonts/verdana.ttf', fontFamily="Verdana", fontWeight="regular", embedAsCFF="false")] public var Verdana:Class; private var mytextfield:TextField = new TextField(); private var mytextformat:TextFormat = new TextFormat(); /* ... class declaration ... */ mytextformat.font = "Verdana"; mytextfield.embedFonts = true; mytextfield.defaultTextFormat = mytextformat;