OT Fonts not working in Flash, Framemaker

I am using an OpenType version of the Univers Condensed family in a number of applications. It works fine in InDesign, Photoshop, and Illustrator, but certain weights of the fonts don't work in Flash CS3 and FrameMaker 8. (We're using Windows XP.)
In FrameMaker, we get an error message stating "Univers LT Std 47 Cn Lt font is not available and will be replaced by UniversLTDStd-Light. However, when we do this, it doesnt seem take and we keep getting the error and we are not allowed to save the file.
In Flash, the problem we have is with Univers LT Std 67 Cn Bd.
Any advice would be appreciated. If I need to buy another version of the font, I can try to do that, although it will make things hard when working with Flash vendors who use Macs.
Thanks,
Chuck

Chuck,
You'll get a better response if you post separately in the FrameMaker
and Flash forums.
Mike

Similar Messages

  • Installed fonts not working in Flash?

    Some of my fonts that work fine in AI and PSD, don't show up
    in the Flash menu. I asked a friend of mine about it and he said he
    had the same issue at times, but had no solution.
    Is there a fix for this?
    Thank you!!!

    Hi,
    I had the same problem with my new CS4 suite... Some of my
    fonts that correctly worked with flash CS3 doesn't appear in the
    font list. I can see them in Ps, AI, o inD, but nothing in flash. I
    use Font Book on MacPro, Leopard (10.5.6).
    Any advice ?
    Thx

  • Embedfont = true; Japanese font is not working in Flash CC

    Hi,
    embedfont = true; was working in Flash CS6 (window XP, 32bit, Air SDK 15.0)
    But I moved same project to new system. Then, it's not working. (Flash CC, window 7 pro, 64bit, SDK 17.0).
    textfield shows nothing. But if I remove this code (embedfont = true;). Textfield shows texts applied default fonts.
    Funny part is English and Korean(My language) Embedfont is working perfectly.
    Only japanese font is not working.
    I've tried several japanese font, but all of them were not working.
    Any Idea would be appreciate.

    Amy~ Yep the lasso tool was what I verified with another user. 'L' seems to be bound indefinitely to loop through different types of lasso tools and it was annoying them because they just wanted L to be the regular freehand lasso. I removed 'L' from being an option on the polygon lasso and even set it explicitly to SHIFT+L as well as set the lasso tool to a completely different keyboard combo. 'L' still cycled through lassos haha. It needs some fixes.
    fertolg~ At least you have a workaround for now. I'd go nuts if I couldn't use keyboard text selection writing code, oy! You're welcome and if you're all set please mark correct so we can filter unanswered. Good luck!

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • Intelligent barcode font not working in Data Merge?

    Intelligent barcode font not working in Data Merge?
    When using Data Merge I only get a pink box where the code is supposed to go. If I cut and paste the same info into the spot the bar works fine. Anybody ever have this problem?

    It looks like you're working with InDesign, correct? I would try posting your question over in the general InDesign forum: http://forums.adobe.com/community/indesign The folks over there will be able to provide you with more specialized expert help

  • Inbuilt FaceTime HD camera not working in flash media live encoder

    inbuilt FaceTime HD camera not working in flash media live encoder

    So you have libconnect.dll placed in modules/access folder of your FMS?

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Why "send sms" not work in flash lite3 ???

    hello
    i write this code for send sms in device :
    on(release) {
    if(_capSMS)
    getURL("sms:" add myNumber add "?body=" add myText);
    it work fine in flash lite1.1 & 2.x
    but not work in flash lite 3 !!!!!
    what shall i do ? please help me
    can i make the command geturl to work on flashlite 3?
    or how can i open an url from flash lite 3?
    please help me

    Hi,
    It appears that the problem is with the security sandbox. To
    be able to send an SMS, it looks like you have to publish for Flash
    Lite 3, and in the Publish Settings, set 'Local playback security'
    to 'Access network only'. I used the following code:
    on (release) {
    if (System.capabilities.hasSMS) {
    getURL("sms:" + myNumber + "?body=" + myText);
    And it would only work when the publish settings were set as
    above. This was testing on a Nokia E65 with the developer edition
    of FL3 installed.
    Hope this helps!
    Darren

  • Font Mapping not working in Flash

    I am editing a flash file that was created by a mac and I use
    windows. Upon opening I recieve a message stating 'Some text uses
    fonts not installed on your system'. When I open the dialog box
    FONT MAPPING and select one of the missing fonts (i.e.Helvetica 65
    Medium) and use the pull down menu SUBSTITUTE FONT my Helvetica 65
    Medium that I have in a fonts folder in my Flash application folder
    does not show. Does anyone know why?

    Some fonts do not have recordable outlines. This is,
    apparently, the situation with the font that you are trying to
    embed. If you can get back to the Mac where this started, you can
    import the font into your movie's library. Then the font is yours
    on either platform.

  • Using AS Linkage name for embedded font not working in CS6

    "Myriad Pro" with bold and italic styles embedded with the linkage names "Body", "BodyBold" and "BodyItalic".
    Creating a TextField using Flash CS6's toolbar and setting its font to "Body*" works fine, but not when its htmlText value has <b> and <em>, etc, tags.
    This also does not work:
    style.setStyle(".something", {fontFamily:"BodyBold"});
    ... but this does:
    style.setStyle(".something", {fontFamily:"Myriad Pro Bold"});
    Using the AS Linkage name worked in prior versions. I like using them because I can change global fonts for "stage" elements.

    Justin_WX wrote:
    So on the list it says Arial http://support.apple.com/kb/ht5484 which is a font from Apple, which is different from Microsoft, but are named the same...
    Is there a list of Microsoft Fonts that will work with Pages?
    Are you actually seeing a noticeable difference in the fonts after conversion? While there are some difference between those fonts, they are very subtle differences and in all likelihood will not really change the look of the document.

  • Embedded CFF font not working in TLF in latest stable build and higher (4.0.0.13875)

    Hi there,
    We are using embedded fonts with the TLF framework and since upgrading to the latest nightly build or the stable build, it stopped working. Here is a short example:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="1024" minHeight="768" xmlns:mx1="library://ns.adobe.com/flex/halo">
         <fx:Style>
              @font-face {
                   embedAsCFF: true;
                   fontFamily: "Courier";
                   src: url("COURIER.otf");
                   advancedAntiAliasing: true;
                   fontStyle: normal;
                   fontWeight: normal;
         </fx:Style>
         <fx:Declarations>
              <s:TextFlow id="tf" fontSize="20">
                   <s:p fontFamily="Courier" fontLookup="embeddedCFF">hallo is dit courier?</s:p>
                   <s:p>hallo is dit courier?</s:p>
              </s:TextFlow>
         </fx:Declarations>
         <s:VGroup>
              <s:RichEditableText textFlow="{tf}" />
         </s:VGroup>
    </s:Application>
    Any idea why it doesn't work anymore. The same example works fine compiling with build; 4.0.0.11686.
    Thanks,
    marcel panse

    Hi Guys,
    I sort of figured out a figured out a solution/workaround:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="1024" minHeight="768" xmlns:mx1="library://ns.adobe.com/flex/halo"
                      creationComplete="onCreationComplete()">
         <fx:Style>
              @font-face {
                   embedAsCFF: true;
                   fontFamily: CourierCFF;
                   src: url(c:/windows/fonts/COUR.ttf);
                   fontStyle: normal;
                   fontWeight: normal;
         </fx:Style>
         <fx:Script>
              <![CDATA[
                   import flashx.textLayout.compose.ISWFContext;
                   import flashx.textLayout.formats.ITextLayoutFormat;
                   import flashx.textLayout.elements.GlobalSettings;
                   import flash.text.engine.FontLookup;
                   import flash.text.engine.RenderingMode;
                   import flashx.textLayout.elements.TextFlow;
                   import flashx.textLayout.elements.SpanElement;
                   import flashx.textLayout.elements.ParagraphElement;
                   import flashx.textLayout.container.ContainerController;
                   import flashx.textLayout.formats.TextLayoutFormat;
                   import flashx.textLayout.elements.Configuration;
                   import flashx.textLayout.compose.IFlowComposer;
                   import flash.text.engine.FontLookup;
                   use namespace mx_internal;
                   private function onCreationComplete():void {
                        createTextFlow();
                   private function createTextFlow():TextFlow {
                        var config:Configuration = new Configuration();
                        var textLayoutFormat:TextLayoutFormat = new TextLayoutFormat();
                        textLayoutFormat.fontFamily = "CourierCFF";
                        textLayoutFormat.fontLookup = FontLookup.EMBEDDED_CFF;
                        textLayoutFormat.renderingMode = RenderingMode.CFF;
                        config.textFlowInitialFormat = textLayoutFormat;
                        var textFlow:TextFlow = new TextFlow(config);
                        var p:ParagraphElement = new ParagraphElement();
                        var span:SpanElement = new SpanElement();
                        span.text = "Is dit courier?";
                        p.addChild(span);
                        textFlow.addChild(p);
                        var flowComposer:IFlowComposer = textFlow.flowComposer;
                        //option 1: This fixes the problem, but i'm not sure why it works without a fontLookupFunction? Does it default to embedded?
                        //you could also specify your own function always returning embedded, but that would just resolve to the same behaviour..
                        GlobalSettings.resolveFontLookupFunction = null;
                        //option 2: I guess this is the more proper solution, specifying the swfContext. Only what context to choose?
                        //every font has its own css/swf and thus context. A paragraph can select a font (and the bold/italic options),
                        //which font to choose here if there are multiple fonts used in the textflow?
                        textFlow.flowComposer.swfContext = ISWFContext(this.getFontContext("CourierCFF", false, false, FontLookup.EMBEDDED_CFF));
                        var cc:ContainerController = new ContainerController( mainText, 200, 200 );
                        flowComposer.addController( cc );
                        flowComposer.updateAllControllers();
                        return textFlow;
              ]]>
         </fx:Script>
         <s:VGroup>
              <s:NumericStepper /> <!-- remove this stepper and the embedded font will work without option 1 or 2 -->
              <mx:UIComponent id="mainText"/>
         </s:VGroup>
    </s:Application>
    Option 1, setting GlobalSettings.resolveFontLookupFunction to null. Fixes the problem, but i'm not sure why it works without a fontLookupFunction? Does it default to embedded? You could also specify your own function always returning embedded, but that would just resolve to the same behaviour..
    Option 2, specify the context: I guess this is the more proper solution, specifying the swfContext. Only what context to choose? Every font has its own css/swf and thus context. A paragraph can select a font (and the bold/italic options), which font to choose here if there are multiple fonts used in the textflow?

  • Fonts not nested in Flash Menu

    Hi,
    CS3 flash professional 9.0 (...created 18th Dec 2007)
    This is similar to the days of suitcase and Quark, but OSX i
    thought these problems were gone. Im using fontbook and every
    application works fine, all my fonts are nested in their folders in
    the font menu, but in flash they are all loose, and its hard work,
    has anyone got this problem or overcome it?
    ta

    This has come up a lot on here. I thought they might have fixed it in CS4. At least they fixed the problem where fonts would not appear in the list if you activated (using a font management app) while Flash was open. Used to have to restart Flash.
    In any case, Flash does treat fonts differently than other Adobe applications. I'm sure someone will jump on here and defend Flash but the truth is in the pudding. Loaded fonts do not always appear in Flash when they show up fine in the other apps.
    I hope Adobe gets it together in CS5. Still waiting for them to fix the issue with font baselines shifting in FLA's between Mac and PC.
    Best thing you can do is post a request:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=15&6213=9

Maybe you are looking for

  • Locked phone

    If I forgot my password to get into my phone and it has locked me out how can I get it unlocked and set a new password

  • Need to know the Business Package for CRM4.0 Sales in EP6.0

    Hi experts,   We are trying to implement the CRM4.0 Sales business package in our EP6.0 environment( Our Backend R/3 is in 4.6B) . We would like to install complete package for the Sales module (The main (Top level) menus in the portal look like the

  • DTW for exporting business partners and Items

    Hi all, Can any one tell me how to work on DTW for exporting business partners and Items. groups,subgroups and properties feilds are required, iam on pl5 thanks in advance regards, kumar

  • Unknown host exception when weblogic is a https client to another server

    Hi, I have weblogic 6.1 sp2. My program connects as a client using https protocol. For this the classes provided by wls are used . The key , cert and ca files are of weblogic available in wlserver6.1\config\mydomain demokey.pem, democert.pem and ca.p

  • SD and MM - Business Package

    Hi, My requirement is to build diffferent screens in EP based on SD,MM and PP tables. Can I make use of SD and MM Business Packegae for this? Please throw some light into this. Thanks Kukku