Font issue - converter?

Have a large project going live next week and having a problem with font embedding - specifically the font Avenir. I have seen many references to this particular font not being Flash compatible, but it's my cilients font and I need to try everything I can to use it. Is there some conversion tool or anything I could use? I've found some fonts that are close but nothing quite close enough.

I am totally font-ignorant but maybe my little experience with similar issue can point you somewhere.
A few years ago we bumped into a situation when we were forced by a client to use certain font (I do not remember its name) that was not displayed correctly in Flash plus we needed a font that did not exist. The way we solved it was - we opened font in a font editor and saved it as a custom ttf font. I vaguely remember there were only minor tweaks we had to perform.
The project was handled by a major agency which means I had guys who are fluent in font design at my disposal - this perhaps what made it so easy. However, I did dig my hands into font editing and even was able to design my little font in a very short time.
Basically, I remember it is not such a big deal. Also there are several free font editors available.

Similar Messages

  • Page numbering/imbedded font issue ~ converting from Word 2003?

    I am new to this forum, so please forgive me if this issue has been addressed 100 times already!
    I am preparing a novel for publication through Createspace (Amazon). Their requirements include that the fonts all be imbedded, and that page numbering begins with '1' on the first page of the story. When I convert my properly numbered word 2003 file to pdf, it comes out looking great, but the page numbers begin with 5 on first page of the story. So I have 2 questions:
    If the pages look okay in terms of font, does that mean that my fonts are correctly imbedded in the pdf?
    and
    Is there a way for me to control the page numbering so it begins with 1 on the first story page?
    Thanks in advance!

    I'm terribly sorry for the trouble. We are working to address the problem with page numbers in an upcoming release, but for now I recommend you try the conversion again using Adobe Acrobat desktop software. You could download a free 30 day trial if needed here:
    http://www.adobe.com/products/acrobatpro/tryout.html
    Kind Regards,
    Michelle

  • Converting a PDF to a SWF Font issues

    Hi,
    Maybe somebody out there has seen this and can guide me in
    the right direction?
    I am trying to convert PDF files into a flash book using the
    flashprinter product.
    Here is an example of the PDF I am trying to convert. (you
    should see it is using the
    following fonts PostScript Fonts - HelveticaNeue-HeavyCond,
    HelveticaNeue-LightCond, HelveticaNeue-LightCondObl,
    NewsGothic and NewsGothic-Bold).
    http://www.sendd.com/~webdrop/htdocs/200704/FontProblems.pdf
    When this gets converted to the Swf (LOOK at the file ZOOM+
    Mode)
    http://www.sendd.com/~webdrop/htdocs/200704/EZBlue_v11t.swf?RRDid=aFC3tehrg1VGCUIylKIQ
    Once I saw what was happening I thought it was a font issue
    and I made up a page with all the fonts used by using the ATM
    sample viewer.
    http://www.sendd.com/~webdrop/htdocs/200704/AllFontsUsed.pdf
    (Look at the SWF file in the ZOOM + mode view - looks great)
    http://www.sendd.com/~webdrop/htdocs/200704/EZBlue_v11t.swf?RRDid=6J5LSHAZKnf9qPXa1VGk
    If anybody out there can help that would be great,
    thanks,
    Swf_trying

    Hey Joseph,
    Please tell me whether you are able to convert any other PDF file to excel format or not?
    What exact error message do you get?
    Are you trying to convert a scanned PDF document?
    Hope to hear from you.
    Regards,
    Anubha

  • Dr. Damien's Developmen​t - The Xylophone Project X - Font Issues and Front Panel Layout

    The Show Raw Data button was made active in this installment. Doing this in a robust fashion was more involved than one might think, due to font and platform issues (remember I want to port this to a Windows Mobile device eventually). The following changes were made.
    The A frequency indicator was made active. This was an oversight from the last update.
    A front panel object, XylophoneFP.lvclass, was created to hold the front panel references and methods.
    The front panel object was used to implement the Show Raw Data button.
    The front panel object was used to compensate for font issues.
    When testing this application on Windows Vista, I noticed that the font differences between Vista and XP were annoying enough that I wanted to fix them. This will also lay the groundwork for any layout issues when porting to Windows Mobile. Usually, I create a cluster containing all my front panel references, but this time I put them into an object. Besides the usual object boilerplate, there are two methods, one to rearrange the front panel and one to show/hide the data graphs.
    Once the controls and indicators are properly arranged, showing and hiding the data graphs is simple. VI server methods are used to find the edges of the outer controls, some whitespace is added, then the front panel size is reset. Arranging the controls in the first place is much more complex. Dialog controls are used, and these controls change size based on the default font size. Font sizes can change due to user preference or when using the application in a different operating system than it was developed in. Button sizes can also change due to localization.
    This problem is difficult to solve cleanly, and the VI which does this, XylFP.lvlib:XylophoneFP.lvclass:ArrangeControls.vi, shows the problem. It relies on the actual sizes of the controls/indicators to rearrange the front panel in a hopefully pleasing fashion. Even though this is a relatively simple UI, the VI is fairly complex. It uses VI server calls to determine the current sizes of controls and then rearrange them. If you choose to do something similar, consider the following hints:
    The Bounds property of all controls is not writable. To change the size of controls, you need to find the property or properties which change the size. There may be more than one (which is why Bounds is not writable). For example, to change the size of a boolean, use the Button Size property.
    In many cases, the property you use to change the size of the control will not be the same value as the Bounds property. Using the boolean again, the Bounds of a 3D LED include the 3D effect around the LED, but the Button Size only includes the LED itself. Comparing the Bounds property to the result of a query to the property you will be setting will give you the necessary offset to convert between the two.
    Make sure you label your wires if you attempt to do things like this. Long wires are very common in this type of programming. It is difficult enough to keep track of things without the added aggravation of having the trace wires back to their source to identify them.
    A few judiciously placed type converters can eliminate many type conversion dots. This is not usually a real problem in this context, but you should get into the habit of efficient programming.
    I will be hiking through the mountains of New Mexico with the Boy Scouts for the next couple of weeks, so do not be dismayed if I do not reply to comments very quickly. However, comments and suggestions are still welcome and encouraged. I will reply when I return.
    Previous Installments
    Data Acquisition Concept
    GUI Concepts
    Specifications
    Core Architecture
    Data Acquisition and Note Analysis
    Sound Acquisition Revisited
    Sound Analysis
    Configuration Dialog
    Calibration Dialog
    Message Edited by DFGray on 06-05-2009 03:09 PM
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    XylophoneX.zip ‏1259 KB

    DFGray wrote:
    I put the event structure in the command loop so that events are processed synchronously.  In the past, I have run into a variety of race condition/synchronization issues when separating the event and command loops and prefer to keep them together to make the program structure simpler.
    It is simpler but you give up any multi CPU performance.  That LV is inherently parallel is one (the only) real advantage over a text based development system.  I can write good structured text that is almost as visually easy to parse as LV.  With modern syntax coloring engines, the difference in icons vs. structured text is not that great.
    But the challenge I give the traditional text coders is to keep track of many mulitple threads.  This is why dataflow is a powerful concept.  Yes it does lead to asynchronous execution but if you impose synchronicity on your code you are working against LV.  I get most first time programs where everything is in a sequence structure.  "Just to be safe".  
    Of course this is much better but  my first design goal is that any application should take advantage of a much hardware as possible, degrade gracefully on slower hardware and play nice with other running applications.  This simpler structure severely handicaps that first goal.
    In this case it is simple enough to "get away" with it since as you point out that there should not be anything that takes significant CPU time.   But that may not be true on the PDA?
    If you are going to run it on the PDA will we be discussing techniques to seamlessly use both NIDAQmx Base and NIDAQmx in the same system?  That is a real challenge.  I look forward to more of this!
    Cheers! 

  • Font issues exporting PDF in Keynote 6.5

    Is anyone else experience font issues exporting PDF's in Keynote 6.5?
    My entire team has been having issues specifically exporting the font Merriweather. It's been fine in the presentation itself, but in the PDF - it's spaced out aggressively and the font weight/type/size is always wrong.
    It's been a real hassle, as our brand body copy font is Merriweather and we've never had a problem with it.

    The conversion issue seems to be tied to OTF fonts. Converting Merriweather to TTF, deleting OTF versions from Font Book, and/or System Font Folder worked for us. Clearing font cache and restarting can further flush out any legacy conflicts.

  • Font Issue in Acrobat

    Whenever I create a pdf or ps file from InDesign and try to later open it in Acrobat to try and edit the file, it at first lets me edit the file, but when I go to save the file, it tells me that the font could not be embedded because the font stored on the page and the system font are encoded differently. Someone PLEASE help. Thanks!

    Besides hoping the font was fully embedded and not subsetted in Acrobat
    5 (the last issue prior to the forced change in font behaviour) - your
    options are limited. You will have more success with the Pitstop API but
    still not perfect results.
    Pitstop is great for missing system fonts and can use a global change,
    PDF profile and action list to search for unembedded fonts and then
    embeded accordingly.
    Certain fonts are transcoded as such into another format e.g. opentype
    fonts are converted to the type 1 or truetype format when distilled with
    pdf version 1.6 and below (and you have to manually select Opentype to
    have the format retained) - even the PDF export from InDesign still does
    not support opentype retention.
    Besides better pdf generation education (in my previous life) sometimes
    the pieces don't always fint back together ...
    Jon

  • Photoshop CC 2014 font issues

    I'm Not entirely sure why this is happening, or what's causing it, but photoshop cc 2014 is causing some serious issues with fonts on my documents. Up until this point my company has used Extensis Suitcase Fusion to activate fonts used throughout our project docs. The 2014 typekit update and addition is somehow conflicting with either photoshop or suitcase and in return setting a large portion of my fonts to it's default or regular weight. It seems like while suitcase is auto activating the necessary fonts, typekit is reading each of those weights as their own individual fonts. This might seem difficult to understand but in any case i would just like to know if there is a way to completely deactivate typekit and or remove it's involvement in my project documents, at this point it is resetting dozens of fonts on some very important project files. I'd much rather not be limited to just the fonts that adobe or typekit prefers.

    I still don’t have a clue…
    So far we’re the only 2 reporting this
    No dia 12/05/2015, às 02:34, abaynoash <[email protected]> escreveu:
    Photoshop CC 2014 font issues
    created by abaynoash <https://forums.adobe.com/people/abaynoash> in Photoshop General Discussion - View the full discussion <https://forums.adobe.com/message/7535637#7535637>
    I'm having the same issues and use FontExplorer X. What is the solution?
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7535637#7535637 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7535637#7535637
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop General Discussion by email <mailto:[email protected]> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=46 94>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.

  • PDF Format Oracle Reports font issue

    My process is generating the batch oracle Reports.
    Their key map is:
    Key1: %* server=server1 userid=xxxs/xxx@xxxx report=D:\sample.rdf destype=file desformat=PDF
    My process is calling IAS server to generate report. IAS ser is generating and saving the report in the specified location.Reports are running on the server locally and DESTYPE=FILE. So the Oracle Reports output is saved on the server itself. Whenever i open the report on my machine/server i have font issue. Some of the reports has very tiny font. It seems the reports generated by using oracle reports which is Arial Unicode font type is causing the problem. If any reports other then Arial Unicode font like Arial Westrn, those reports are fine. We have 1000s of reports. So we don't want to change each report font type. For me it seems the issue is with the font on the server. Is there anyway to ask App server use Arial Westrn if Arial Unicode not found. How to make these configuration changes in the server. Any suggestions please.

    Maybe this helps or at least points you in some direction ...
    Have a look at font aliasing when configuring Application Server : http://download.oracle.com/docs/cd/B14099_19/bi.1012/b14048/pbr_font.htm#i1006140
    If your Application Server is located on Windows I would suggest to install the fonts there.
    In Unix, this a more complex task.

  • Font issue between Reports Designer and Report Output

    Hi.
    I've succesfully migrated several reports from 6i to 10g (10.1.2.0.2) with and without parameter form. However, I have the following font issue:
    - When report is run from Reports Designer, font is kept.
    - When report is run from a forms module (through rwserver on the same machine, that is not really from an application server, but using Oracle BC4J or Developer Suite enviroment) the report output is different. In this case a bigger font is displayed and occasional truncation happens for some fields.
    The question is: How can i avoid this difference in font behaviour?. Is it font.ali related?. How come this happen on the same machine(Windows XP)? These reports are to be deployed on Linux, where reasonably, and font machine is expected to happen.
    Font used: Arial (Occidental) 9

    this might be an issue with the printer that is associated also, and the permissions to the printer that you might have..
    login to the application server machine and restart the reports server as an admin..try running the reports via the URL..i have a feeling that this issue might be somethiing to do with the permission(s) to the printer from your AS machine

  • ICal Print List Hang / Font Issue / Sync Problems...

    Okay, here's a couple issues all wrapped up into one thread/post - reason is cause I suspect they may all be tied together somehow, but am not sure.
    Sync Problems...
    Regarding the Syncing problems, you can find an ongoing thread about @ http://forums.markspace.com/viewtopic.php?t=1632
    In short, some of us are having issues with events syncing to our Palm to the wrong timezone, causing them to be an hour off (usually within the new & old DST date change). Yes, all the usual fixes have been tried - pls read the thread noting "adairnet" and ymatto" postings.
    Also, in addition to this time issue, I have iCal events that I've deleted in iCal still show up on the Palm after one-way syncing!
    Print List Hang...
    Every week I print a "list" of events from a certain calendar. The past couple weeks I noticed some lines in the notes field printing on top of each other. Twas odd indeed, but I hadn't had the time to look into the reason. Then this week I was going thru my usual printing proceedure and now iCal locks up, hangs up, crashes, forcing me to force-quit the program. It's usually after I extend the dates beyond 2 or 3 days, but I've not been able to find a consistency. I've redone events thinking they were corrupt with no success.
    Font Problems...
    After the Print List issue above, I opened my Console program to see if it was reporting anything. At first it indicated that it could not find Helvetica Neue and would substitute it for Helvetica. This put me in touch with some font corruption - so I got rid of those bad fonts and activated Helvetica Neue which got rid of that message. But made me wonder if there are more font problems causing the print hanging & syncing problems. I have FontAgent Pro and do have some font issues that I'm trying to work out.
    But the Console is displaying another string of messages every time the Print List proceedure hangs up which I cannot figure out...
    2007-04-24 16:24:54.151 iCal[28975] NSATSGlyphStorage inconsistency. Cannot find run storage for character range {138 67} for CTRun 0xDBE87D0. Ignoring the run...
    2007-04-24 16:24:55.175 iCal[28975] -[NSMutableStringProxyForMutableAttributedString replaceOccurrencesOfString:withString:options:range:] called with out-of-bounds range. For apps linked on Tiger this will raise an exception. For earlier apps it will produce this one-time warning and continue with existing behavior (which is undefined).
    2007-04-24 16:24:55.176 iCal[28975] * NSThread: ignoring exception '* -[NSMutableStringProxyForMutableAttributedString replaceOccurrencesOfString:withString:options:range:]: Range or index out of bounds' that raised during delayed perform of target 0xdde58d0 and selector 'renderPreview'
    So, all of this is causing me to wonder if the iCal or SyncServices database is corrupt. Is there a way to dig into the iCal db and check for corruption &/or fix it?
    Or does anybody have any further suggestions on any of these issues?
    thanx.jason.

    RedKamel,
    The SyncServices folder should be avoided like "a swarm of bees". This article discusses some of the issues that can arise when the SyncServices folder is deleted or modified:
    http://docs.info.apple.com/article.html?artnum=301920
    Data loss and Data corruption can result from deleting or modifying the SyncServices folder, and that data loss or corruption can be propogated to devices, .Mac, and other applications that sync with SyncServices.
    If you have isolated an issue with the other steps in your post, I would recomend speaking with AppleCare before removing that folder.
    Hope this helps,
    Nathan C.

  • Acrobat 7 Pro - Comment Summary Font Issue

    We have a situation involving font usage in comments in Acrobat 7 Pro that I hope someone can shed some light on. It will be some time before we can move to version 8 or 9, so the problem is important to us.
    Here's the symptom, then I have a few basic background questions. The text in a Note comment includes a 'less than or equal to' symbol which appears correctly. The problem comes when the comments are summarized to a PDF file or printed. The 'equal to' portion has now disappeared! I first thought that this might be a font issue, but now am unsure.
    My basic questions are:
    What font is Acrobat using when a comment is created? I realize that you can set a preference for which font to use when viewing comments, but apparently not when creating them?
    When a comment summary is created to a PDF file, what determines which font is used in the summary? We have seen cases where the resulting PDF has used Arial or Tahoma or SimSun or.........
    We have had at least one situation where opening the same Acrobat 7 PDF in Acrobat 8 Pro did not exhibit the problem when summarized there. Was this a known issue that was repaired in Acrobat 8?
    Thanks much for any information you can provide.

    Hi David,
    This is a known issue with Acrobat on Mac.
    Please follow the steps mentioned in the KB : http://helpx.adobe.com/acrobat/kb/blank-eula-screen-appears-acrobat.html

  • Touch-up tool causes font issue in Acrobat 9 and X

    While I edit text using the Edit Document Text tool (formerly TouchUp Text) the font style are getting changed, for example If i select the Uppercase style text using Document Text Tool after exit the selection and trying to save as  the doucment some characters with in the text changed into lower case. In Acrobat 7 and 8 the TouchUp Text tool works fine. Please suggest a solution to get rid of this issue in 9 pro and X pro.

    Hi LoriAUC,
    I have attached the screenshots  for your reference, How I selected the text and what the problem was occur in the pdf files. Actually this is pdf file which is exported from InDesign as per customer provided export settings. if I change 100% of subset fonts in that export settings(See the screenshots below) I can get rid of the font issues in Acrobat 9 and X pro but I am not supposed do any changes in that settings.
    If you want check/analyze the problematic pdf file I can send it as an attachement to your mail ID? if so please let me know your mail ID.
    Please let me know if you need any other details or questions to be clarified regrading this.
    Thanks for your  support.

  • Font issue in ECC 6.0 upgrade

    can any one please tell me
    regarding the font issues in SAP SCRIPT some of them fonts are not upgrading in ECC 6.0 VERSION as in 4 and 5 version.
    please suggest me to solve this problem.
    please help me its urgent.

    in this case u have to check the syntax of ur driver program, 2. have to check the NACE settings for output type and Medium also.
    Regards
    Peram

  • Font issue in Acrobat 8

    We have been having problems with .eps files placed in Quark and exported to a pdf. In Acrobat 7 standard the fonts from the .eps file gets garbled when read on the PC. Use local fonts seems to cure this problem, but I took the pdf file and opened it in Acrobat 8 and got this message. "Cannot extract the embedded font 'XYSNP+Trajan-Regular'. Some characters may not display or print correctly." Now all the surrounding text in Trajan that was input from Quark 6.5 changes to a different font when printed. Would switching to an Opentype version of the font solve this problem?
    Thanks

    I have been having the same sort of problem but with Illustrator CS3, Photoshop CS3, InDesign CS2, and Acrobat 8 Professional. I am the only Mac in the building (brand new system), everyone else is on PC. I am only getting the font issue with the Optima family. The school I work for purchased the font as a PostScript Type 1 outline font. We were guessing that I might be having issues because I am on a Mac.
    When working in InDesign, I have to print off most of my pieces on an inkjet printer, if I try to print to a xerox laser, Indesign crashes or pops up with an error "There is a problem with the font Optima." I have been using both methods for creating a pdf in indesign:exporting to and printing as.
    If I use the optima font in Illustrator I get a "can't print the illustration. There's a bad font used in the system" error.
    When I create PDF's through Indesign, the PDF turns out fine on-screen, but the error message pops up "Cannot extract the embedded font 'XQFZSM+Optima'. Some characters may not display or print correctly."
    When I try to print the PDF out on either a laser or inkjet printer, the optima font has a lot of missing letters or is replaced by a different font.
    This has been very frustrating. The weird thing is that it doesnt happen with all projects that use the optima font. I have done some very small projects (envelopes, postcards) and have either had an issue or no issue at all with optima; and Ive worked on larger projects (magazines, newsletters) and have almost always-from what I can remember-had a problem.
    Is this something that I can fix with program settings? Or would a Mac compatible font be the solution?
    Thanks

  • PDF Font Issues

    I recently added some new fonts to my directory.  Since then, I have had font issues with my pdf's and previews where the characters are illegible.  I have tried using disabling fonts on Font Book for pdfs, and tried using Font Finagler and FontNuke to clear all font caches.  The problem only seems to effect pdf's.  I am operating on OSX 10.6.7.  Does anyone have any suggestions that might fix this problem. 

    I was getting a "Missing Font" message and the explanation on the forum is that a bug in 10.6.7 caused the OS to UNEMBED fonts in PDF files!
    Don't know who said that, but it's incorrect.
    I built a simple text document with three lines of text. Opened three fonts not on the system, applied one each to a line of text and saved a PDF using Apple's built in PDF generator.
    I then disabled the fonts and deleted them. With no fonts to find and the comment being true that fonts are not embedded, the PDF should display incorrectly. It didn't. I looked exactly as it should, meaning the fonts had to be embedded in the file.

Maybe you are looking for

  • Null pointer exception and servlet

    I cant figure out why i am getting a null pointer exception. this works if i keep my form output in the same class as my driving servlet. All i did was break off the html display to a new form and i get a null pointer exception. this is just an excer

  • Issues with using SV Time-Varying Loudness.vi

    Hi,   I am rather new to Labview and am having issues getting my Time-Varying Loudness calcuations to come out correctly. Attached is my current VI and a .csv file of a set of my data (calibrated in Pa. Sample rate = 50kHz for 5 seconds). When i run

  • Employee in 2 company codes

    Hi, My client's requirement is as follows: Can a single employee belong to two company codes? In my opinion it is not possible? Can you please let me know if  I am correct? Regards Manish

  • WHAT IS DAEMON CONCEPT IN RDA ?

    HI EXPERTS, WHAT IS DAEMON CONCEPT IN RDA ?HOW IT WORKS ? I will assign points for ur valuable answers

  • CS6 Crash on startup

    I was working on building a small music montage in Premiere 6 last week and now this weekend it's crashing on startup on my Lion Macbook Pro. I re-installed 3 times, updated to the latest version, and it's still crashing on startup! Grrr! Here's the