Flex 4 Embed fonts in flash swf VS embedding fonts in flex

I have this dilema...what's the best way to embed fonts?
In flash I can easily embed the fonts + the chars ranges that I need through the menus export the swf and then use it in flex.
In flex I don't see an easy way of setting the character ranges. How can I get the values I need? I read the format is U+(beginning of range)-(end of range) but where do I take beginning and end of the range from ?
Thanks in advance.

Сode hinting in Flash Builder 4 code editor for global style, e.g.
global {
   font-family : Arial;
works for me.
Also in @font-family style declarations, I can code hint for "font-family", "embed-as-cff" styles property too.
Although, it is true you do not get code hints for values for those particular properties, I think that CSS editor could support it too, but it does not.

Similar Messages

  • Font in flash .swf changes

    Hi,
    I'm using a Futura font in my flash website. When I open the
    .swf file to test it out on my computer the font appears as I
    selected. But on other peoples computers it gets replaced with a
    Times New Roman font (I'm guessing this is some kinda default cause
    my computer didn't originally come with futura). How do I stop this
    from happening?
    Sam.

    Hi Sam, you need to embed Futura in your SWF so that it's
    there even on computers that don't have the font installed. Be
    aware that this will increase your SWF file size.
    You can do this a couple different ways. Either click the
    Embed button on the Properties panel while the text field is
    selected and choose which glyphs you need... or go to your Library,
    in the menu choose "New Font" and choose which font, size and
    appearance.
    You need to do this for each variation of the font. For
    instance, if you have Futura and then Futura Italic, you'll need to
    embed both.

  • How to set up one-button embed-hotlinking for Flash SWF?

    Hello,
    I'm publishing a webcomic in Flash.swf format and I'd like to make it as easy as possible for people to grab my comic and put it on their website. How can I set up one-button hot-linking that will automagically provide the code so that they can easily drop it into their website, similar to the way YouTube does with video?
    Thanks,
    Tom

    you can use the following.  the bolded lines require you to use appropriate values:
        <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="yourswfwidth" height="yourswfheight" id="swfname" align="middle">
                    <param name="movie" value="http://www.yourdomain.com/path/swfname.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#ffffff" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <!--[if !IE]>-->
                   <object type="application/x-shockwave-flash" data="http://www.yourdomain.com/path/swfname.swf" width="yourswfwidth" height="yourswfheight">
                        <param name="movie" value="http://www.yourdomain.com/path/swfname.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#ffffff" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="window" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>

  • Text exported using flash createJS Toolkit - embedding fonts, @fontface?

    Hi,
    A text box in flash contained in a movieclip "MyTxt_mc" exported as per createJS toolkit results in lines in CreateJS script as :
    (lib.MyTxt_mc = function()
    { this.initialize();
    //text
    this.MyTxt_txt = new cjs.Text("The actual text", "30px Arial");
    this.MyTxt_txt.textAlign = "center";
    this.MyTxt_txt.lineHeight = 32;
    this.MyTxt_txt.lineWidth = 205;
    this.MyTxt_txt.setTransform(102.5,0);
    this.addChild(this.MyTxt_txt,this.shape);
    Is there a way to insert getting web fonts from online libraries or from a font file held on the server? As I wish to use other than Arial or default device fonts.
    I've read up about @fontface, but that's a little puzzling as to how to apply it to the flash - html5 output.
    Help for how to / best approach and exact syntax would be greatly appreciated.
    Regards
    Steve

    Tried replacing the Arrial Narrow font with a different one
    from another coworker. Still no dice.
    Tried repairing permissions. Nope
    Tried making a new user and checking it there. Nope.
    Moved the font from my Library to the system wide library.
    Bupkiss. (Is that how it is spelled?)

  • FONT PROBLEM! SWF CANT RENDER FONT..

    m building an online portfolio and there is a text "erkut acar" in 18pt bauhaus font and below that there is an animation of the words "photography" "web design" "logotype" with myrand pro font flying in and out... on my pc it renders perfectly so i uploaded the updated swf.. for some reason after the first fly out my mac doesnt render the font and uses something like garamond for the following words...
    u can check it out at http://www.arsmeatim.com/test
    someone please help

    Hi,
    Looks like you have not embedded your fonts. Try embed the fonts you have used. If you are using CS5 then here is the details http://help.adobe.com/en_US/flash/cs/using/WSb03e830bd6f770ee21a3597d124daee0526-8000.html
    Thanks!
    ps: please mark this post as Answered if this is of help to you

  • Embed fonts in Flash CS3 and load in Flex at runtime

    Hi,
    I want to embed fonts in the library of Flash CS3, compile it into a SWF and load it in my flex up at runtime and register the embedded font.
    I'm able to get the linked class in Flex but the font doesn't show.
    The FLA has a font called Viner Hand embedded as a library item, with linkage VinerHand and baseclass as flash.text.Font
    Here's the code in flex to register the font -
    var FontLibrary:Class = ApplicationDomain((event.target as LoaderInfo).applicationDomain).getDefinition('VinerHand') as Class;
    Font.registerFont(FontLibrary);
    When I do Font.enumerateFonts after this, I see [Font VinerHand] in the array but the textField doesn't show the font embedded.
    Nishant

    Hi there,
    Try taking a look at the following links:
    http://www.trajiklyhip.com/blog/index.cfm/2007/7/18/Embedding-Fonts-in-Flex
    http://blog.flexexamples.com/2007/10/25/embedding-fonts-from-a-flash-swf-file-into-a-flex- application/
    Hope it helps.
    With best regards,
    Barna Biro

  • Embed OTF Font as CFF in Pure Actionscript Project using Flex SDK 4.0

    I want to apply the method explained here: http://www.insideria.com/2009/03/flash-text-engine.html using only the Flex SDK 4 (not using FlashBuilder)
    Specifically:
    Embedding fonts can be tricky. In Flex, embed the font and store it
    using DefineFont4 and font subsetting currently only supported by Gumbo.
    A future version of Flash will support it but in the meantime, a Gumbo
    SWC with the embedded font must be created then adding to your Flash CS4
    project.
    The following is the method I am using to embed the fonts.
    public class Main extends Sprite {
         [Embed(source="../assets/GE Thameen DemiBold.otf",
                                  fontFamily = "GE Thameen",
                                  fontWeight = "bold",
                                  mimeType = "application/x-font",
                                  embedAsCFF = "true"
         private const GEThameen:Class;
    The following command line was assimilated after solving the output error messages using google and a little looking into how FlashDevelop works..
    mxmlc Main.as -load-config config.xml -managers flash.fonts.AFEFontManager
    The output SWF is not working as supposed, and the file size (20KB) does not seem to account for the embedded font. PS: When the font embedding is bypassed, and a device font is used for the text engine classes, the file works perfectly.
    The contents of config.xml are as the following:
    <?xml version="1.0" encoding="utf-8"?>
    <!--This Adobe Flex compiler configuration file was generated by a tool.-->
    <!--Any modifications you make may be lost.-->
    <flex-config>
      <target-player>10.0.0</target-player>
      <compiler>
        <source-path append="true">
          <path-element>E:\actionscript</path-element>
        </source-path>
        <external-library-path>
            <path-element>C:\bin\flex_sdk_4\frameworks\libs\player\10.0\playerglobal.swc</path-element>
            <path-element>C:\bin\flex_sdk_4\frameworks\libs\flex.swc</path-element>
        </external-library-path>
      </compiler>
      <file-specs>
      </file-specs>
      <default-background-color>#FFFFFF</default-background-color>
      <default-frame-rate>30</default-frame-rate>
      <default-size>
        <width>800</width>
        <height>600</height>
      </default-size>
    </flex-config>

    After losing about 2-3 days to trying to figure this stuff out, I rolled back to build 4.5.0.19786 and the problem doesn't occur anymore.  I'll revisit this issue once we ship the product next week.
    Thanks Alex.
    Cheers,
    Nate Beck

  • [svn] 1384: Splitting DefineFont into the various DefineFont 1, 2, 3, etc SWF tag formats but retaining a common base DefineFont class so that embedded fonts are still retained as symbols for the SWF dictionary no matter what version of the SWF tag is us

    Revision: 1384
    Author: [email protected]
    Date: 2008-04-24 07:54:58 -0700 (Thu, 24 Apr 2008)
    Log Message:
    Splitting DefineFont into the various DefineFont 1, 2, 3, etc SWF tag formats but retaining a common base DefineFont class so that embedded fonts are still retained as symbols for the SWF dictionary no matter what version of the SWF tag is used.
    Also improving [Embed] so that it can recognize .TTC files as assets (previously these were only recognized through CSS @font-face rules).
    QE: Yes, please add a test case for using [Embed] to embed fonts from a TTC file in addition to our tests for @font-face. Note that the AFEFontManager must be configured for this scenario.
    Doc: No
    Checkintests: Pass
    Mxunit: AtEmbed Font suite: Pass
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/AbstractTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/FontTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MimeMappings.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/CachedFontManager.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Dictionary.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieEncoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagHandler.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagValues.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/FontBuilder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontAlignZones.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontInfo.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
    Added Paths:
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFont3Face.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont1.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont2.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont3.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont4.java
    Removed Paths:
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFontFace.java

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • Embedded font issues -- Flex not measuring properly

    I started this out in one thread ( http://forums.adobe.com/thread/470702 ) and it has progressed into a new, bigger issue. I embedded fonts using the code below.  Flex is not measuring them properly or the font I'm using is vertically challenged.  I suspect the font I am embedding has different vertical spacing than the default font.  I have determined the fonts are embedding by rotating the containers.
    Here's an example of what I'm getting:
    The right side radio button is the raw display (height works out to 23), the left side radio button I forced the height to 15.  Both the radio buttons are set to exactly the same y coordinate.  You can see the right hand text is not centered on the radio button.  I don't want to go thru the hassle of adjusting every single component height to make the font look centered plus that's an ugly workaround.
    I don't think there is anything wrong with my code nor do I think a font swf will help.  I sure would like to know what's going on but it is beyond my understanding.  Here's my thought.  I like the default font the compiler uses when I DON"T embed fonts, looks like this:
    I figure if I could embed this font, everything would work properly.  I just don't where this font lives.  The docs indicate the default font is _serif but it looks more like _sans to me.  And I don't know the hierarchy for my platform.
    So...  Does anyone know either how to fix this measurement issue or where I can find THE True Type font or swf or something that Flex uses as a default so I could embed it?
    /* CSS file */
    @font-face {
    font-family: MainFont;
    src: url("assets/fonts/verdana.TTF");
    unicode-range: U+0020-U+007E;
    advancedAntiAliasing: true;
    @font-face {
    font-family: MainFont;
    src: url("assets/fonts/verdanab.TTF");
    unicode-range: U+0020-U+007E;
    advancedAntiAliasing: true;
    fontWeight: bold;
    @font-face {
    font-family: MainFont;
    src: url("assets/fonts/verdanai.TTF");
    unicode-range: U+0020-U+007E;
    advancedAntiAliasing: true;
    fontStyle: italic;
    @font-face {
    font-family: MainFont;
    src: url("assets/fonts/verdanaz.TTF");
    unicode-range: U+0020-U+007E;
    advancedAntiAliasing: true;
    fontWeight: bold;
    fontStyle: italic;
    global {
    font-family: MainFont;

    First off, yes there was a correction to the left hand radio button.  I forced the height of the button to be different and that seemed to help center things
    After a bit of beating my head against the way, I decided to run a simpler test.  I set up a case where I had default fonts side by side with embedded fonts.  Since my default.css file had Verdana I decided to use a Verdana embedded font.  I figured I could compare them directly and maybe play with advanced anti-aliasing at the same time.  I've attached the files (change the txt extension to mxml)
    The result was a somewhat of a surprise.  I didn't realize that all text really wasn't centered on the component (eg radio button, checkbox) at my default size and below.  I do see the small pixel shift, especially in the Button.
    So...  I have found the "real" font declaration in the defaults.css file, am seeing the small pixel shift with embedded fonts, that using advanced anti-aliasing  can help on smaller text, and realized I have to be very careful where I use font sizes smaller than default.  I'm guessing that the "perfect" default size on my system would be 12 since that appears what my Verdana.ttf font is based on.  My defaults.css file has the font size set at 10.  The inability to measure properly is exacerbated when the fonts are embedded.
    Now the real question -- anyone have a clever fix?

  • Using an Embedded Font in another .swf

    I am encountering a situation with font embedding that hopefully someone out there will know the solution to. This is a slightly boiled-down version of the problem but all the pertinent details are included. Without further ado, here's the situation:
    TLDR Version:  If I have a font embedded and registered with Font.registerFont(), and I attempt to use that font in a .swf that was compiled from an .fla in Flash CS5 that so much as MENTIONS that font, it fails.
    Longer Description:
    The Goal: Embed fonts in 1 .swf, use those fonts in many .swfs. Simple.
    Fonts.swf
    I have 3 .swf files. The first is called Fonts.swf. This was created in Flash CS5. It contains an embedded font( Franklin Gothic Demi ) with characters a-z, A-Z, numerals, and punctuation, etc. Regular, not bold. The font is exported for actionscript and the class is FranklinGothicDemi.
    On the main timeline of Fonts.swf is the code:
    Font.registerFont( FranklinGothicDemi ).
    Application.swf
    The second .swf is Application.swf. The following code snippet is from Application.as:
    [Embed(source="Fonts.swf")]
    private static var EmbeddedFonts:Class;
    initFonts()
    var embedFont:EmbeddedFonts = new EmbeddedFonts();
    embedFont.addEventListener( Event.COMPLETE, function( e:Event ){ traceEmbeddedFonts(); } );
    When traceEmbeddedFonts is called, it verifies that Franklin Gothic Demi is in fact registered.
    UserInterface.swf
    The third .swf file is UserInterface.swf. Fonts are NOT embedded in this file. They are not supposed to be. The project has many .swf files and they should all be using the fonts embedded in Fonts.swf.
    On the main timeline of UserInterface, it calls it's own version of traceEmbeddedFonts(), which again confirms that Franklin Gothic Demi is embedded.
    Inside UserInterface is a TextField we'll call mMainTextField, with some text, say "Main Menu". The font is "Franklin Gothic Demi", the anti-alias style is 'use device fonts.' I have tried other anti-alias styles as well.
    As it turns out, UserInterface.swf is 'embedding' Franklin Gothic Demi, with a character set of a big fat 0 characters. This is taking precedence over the Franklin Gothic Demi font embedded from Fonts.swf. I can side-step this problem by setting mMainTextField to use some other Font while publishing and then using actionscript to change it back to Franklin Gothic Demi when the project is running, but that's not a solution that is friendly to the artists.
    In essence, the question is simple: Why is Flash Embedding and Registering fonts with character sets of size 0, despite the fact that nowhere in UserInterface.swf is there a request to embed fonts, and how do I prevent it from doing so?
    If anyone who sees this has already encountered and solved this problem and shares the solution with me, you will be my favorite person .
    Thanks!
    -J

    You know, I think its just a bug inside Flash Builder Burrito. When I run my app through the emulator it doesn't display correctly but when I run it on my phone it works as it should.

  • Embedded fonts in CS3

    Hi!
    Since Flash8, i use a share library with embed fonts. These
    fonts (Century Gothic, MS UI Gothic, SimHei and Avant Garde) are
    used in a multi language training application showing 218 swf
    files.
    All my dynamic and imput textfields use these fonts as
    embedded font.
    These 4 fonts are duplicate in 4 "embedded fonts version" to
    cover regular, bold, italic and bold italic mode.
    So, i've 16 fonts in my share library as this method. for
    example :
    Font name with regular mode -> Font_Name__Normal
    Font name with bold mode -> Font_Name__Bold
    Font name with italicmode -> Font_Name__Italic
    Font name with bold and italic mode ->
    Font_Name__Bold_Italic
    Thanks to this method, i can set a font to my textfield
    according to the user language mode. For exemple Century Gothic is
    set for English users, MS UI Gothic for Japanese users and SimHei
    for Chinese users.
    I would like to migrate this Flash8 application to Flash CS3.
    So i open my library, rigth click and select new font. Next, select
    linkage and check "Export for runtime sharing".
    At this moment, a class name and a base class are set bu
    Flash CS3. I just write the URL like that "./fla_name.swf" and
    press ok button.
    A warning messagebox tells me "A definition for this class
    could not be found in the classpath, so one will be automatically
    generated in the swf file upon export."
    As i don't know what type of class i need to create (i just
    start AS3, never used it before), I accept and export my flash
    file.
    The Flash CS3 swf size is 18KB and the Flash 8 swf size is
    38MB. I conclude that my fonts are not embedded in my file.
    To conclude, how to do it with Flash CS3 ?
    thanks for your help

    > export to PDF so that the newsletter can be edited by others.
    That's not how PDF works. The purpose of exporting a PDF is to make a file that can be viewed and printed by others without the software or fonts used to create the original document. If you want people to edit your InDesign files, they'll need the same version of InDesign and legitimate licence to use the same fonts.
    Some font vendors are foolishly paranoid that people will use PDF to copy their fonts. It's not impossible, but it is difficult to extract a font from a PDF, and nearly useless if the font was embedded as a subset, which most PDF exports use. It is much easier to just copy the font file, and there's nothing preventing that. So blame the morons who sell that headline font and use another or convert it to outlines before PDFing.

  • Embeding Fonts in AS3?

    Hello All,
    Publish Settings:
         Program:  Flash Professional CS6
            Target:  Flash Player 11.2
             Script:  Actionscript 3
    So I've created 2 new "Fonts" in my library in order to embed them into my Program. But when I run the program the font is not correct. Not sure
    what I'm doing wrong..?
    Below are the settings for the Embedded Fonts I included. There are 2 of them, which I created by right-clicking in the Library and clicking "New Font".
    The First Font:
                           Name:  "Font_Impact" 
              Char Ranges:  All
           Outline Format:  TLF(DF4)
                    Linkage:
                          -     Checked --->  Export for Actionscript
                          -     Checked --->  Export in Frame 1     (*Don't know if I needed this but it was selected by default..??)
                          -     Identifier --->  Greyed out....
                          -           Class --->  "Font_Impact"
                          - Case Class --->  "flash.text.Font"
                    Sharing:
                             *NOTHING SELECTED HERE (*This was the default so I left it as is)
    The seconds font has the exact same settings as the one above except:
                   Name:  "Font_Arial_Black"
                   Class:  "Font_Arial_Black"
    Now, what I did was I followed the instructions I found here at this link below:
              http://www.gaslightgames.co.uk/?p=163
    I think I did exactly what they did in their example but it didn't seem to work for me.
    My code where I'm trying to use this is:
    import flash.text.TextField;
    import flash.text.Font;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import fl.text.TLFTextField;
        var tickerTxtField:TLFTextField = new TLFTextField();
        //var tickerTxtField:TextField = new TextField();               //---> Tried this one too, same result
     var tickerTxtField_format:TextFormat;        //TextFormat
    var embedFont:Font_Arial_Black;               //Embedded Font 1
    var embedFont2:Font_Impact;                    //Embedded Font 2
    :............OTHER CODE............:
    embedFont = new Font_Arial_Black();
    embedFont2 = new Font_Impact();
    tickerTxtField_format = new TextFormat();
    tickerTxtField_format.font = embedFont.Font_Impact;
    tickerTxtField.text = "This is some sample Text To Display..."
    :............OTHER CODE............:
    I thought I was doing it correctly while I was following the instructions in the link I provided, but I can't seem to get it working.
    Can anyone tell what I'm NOT doing correctly? Any thoughts would be greatly appreciated...!
    Thanks in Advance,
    Matt

    Hi,
    I believe this line is the one causing problems:
    tickerTxtField_format.font = embedFont.Font_Impact;
    I guess it should be:
    tickerTxtField_format.font = embedFont.fontName;
    You actually want to use the property 'fontName' of the Font class, not substitute it for the name of your font.
    Hope it helps,
    Marcel

  • Issue with embedding fonts

    Hi,
    Using Livecycle Designer ES, I've built a form for a client. And they have insisted on using a specific, non native font (DIN, in all it's flavours). This is a TrueType font.
    In the form properties, I have selected "Embed fonts". There are also other fonts like Wing Dings etc...
    When the form is opened in Reader (9.3), and you look at the Document Properties, under the Fonts tab, all the fonts, except the DIN fonts have "(Embedded)" next to them. The DIN fonts All have 2 extra entries, namely "Actual Font: Adobe Sans MM" and "Actual Font Type: Type 1".
    Does anyone have an idea as to why these specific fonts cannot be embedded?
    Thanks,
    Eric

    Hi,
    I suspect that the particular font cannot be embedded, due to the license that was originally purchased. Some fonts are sold (particularly bundles/families) as "print and preview". This means that they cannot be embedded in documents where the user will be using the font to edit the form. Here are some screen shots of an XFA form which used the "Frutiger LT 45 Com" font, which is "print and preview":
    When you look in the Warnings tab, it might tell you that the DIN font does not permit embedding:
    When you open the form in Acrobat/Reader on a computer that has the fonts installed, all may appear to be well:
    But when you open the form in Acrobat/Reader on a computer that does NOT have the font installed, the DIN font may be substituted:
    The DIN font may be a "print and preview only" font, which would mean that it would not be embedded in the form.
    The best option is to check the website where the client purchased the font, to check if it is available as "editable and embedded".
    If your client really wants to use the font, then an "editable and embedded" font would need to be purchased, if it is available.
    Good luck,
    Niall

  • PS font will not show up (ttf fonts work)

    WTAF Adobe? Since the very last update i can't get my PS-Fonts working. I opend an old project file from the late may with some Postscript-Fonts in it and they're all gone! They won't show up neither in stage or in the exportet exe/swf.
    Embedding Fonts doens't change anything because I'm working with static Fonts!
    DEMO (Fla+SWF) http://www.file-upload.net/download-6918085/cs6_bug_font.zip.html
    DAFUG happend?

    Are you on windows? did you have a M$ update install automatically this morning? if you answered yes to both, read this post
    http://forums.adobe.com/thread/1113943
    It's the M$ update thats making txt appaer invisable.. i fixed it by rolling back my pc to before the update last night with system restore.
    its not flash, its M$...
    BigDaddyFink

  • Using fonts embedded in the main app in Flash swf(s) loaded at runtime

    Hello there,
    My main application has several fonts embedded via CSS:
    @font-face {
    src: url('/Library/Fonts/ACaslonPro-Regular.otf');
    fontFamily: CaslonR;
    unicodeRange: U+0021-U+007E;
    At runtime the main application loads various swf files that were created in Flash CS5.
    I can't figure out how to allow those dynamically loaded external swf files to use the fonts that are already embedded in the main application.
    Of course I can embed the font in each swf in Flash CS5 to begin with, but that doesn't seem like an elegant solution, let alone it significantly increases the file size of every swf.
    Thanks,
    FTQuest

    See the embedded font post on my blog
    Alex Harui
    Flex SDK Team
    Adobe System, Inc.
    http://blogs.adobe.com/aharui

Maybe you are looking for

  • ABC-analysis in Open Items report

    Good day, dear experts! I got a task from my chief to find out how to use menu path "Go to - ABC analysis" in Open Items report FBL1N/FBL5N. Everything I've found is a message "ABC analysis not possible here", Message no. 0K076, and old-old note for

  • Drilldown in new tab instead of in the same tab

    I have one tab\page with report, which display some column with hierarchy data (country). The pivot table header looks like: day, measure1, measure2. where each measure column is divided to several columns based on countries number: country 1, countr

  • Site Speed Improvements

    To All: I am looking for ways to improve my website loading speed. I have several albums on the site (www.lens-perspective.com) and I am wondering... 1.) if the site would load faster if limited my albums to 10-15 pictures. 2.) Should I optimize the

  • Harddrive noise on a week old 120 classic

    So I got the 120GB classic about a week ago, and noticed tonight the harddrive is making a kind of clicking noise when songs are being played. I noticed it when the iPod was connected to my computer and I was listening through itunes. Anyone have a d

  • Running WebLogic as Web Server

              Hi,           Please help!           I am using WebLogic as a Web Server.           For some reason, I cannot access HMTL files in myserver/public_html folder.           What should be added/modified in order for this to work?           Tha