Safari uses wrong font

Hello, I installed a number of new fonts right now and Safari started using one of them as a "standard" one: it's almost everywhere.
Even now, typing this text, I see it
(have some problems loading a picture directly from my computer)
http://oi60.tinypic.com/4gkl0p.jpg
Not all texts are shown in this font though and the problem seems to be only about Safari.
Delete the font? Find font settings for Safari?

Back up all data before proceeding.
Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
Start up in safe mode to rebuild the font caches. Restart as usual and test.
Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t start in safe mode. In that case, ask for instructions.
If you still have problems, then from the Font Book menu bar, select
          File ▹ Restore Standard Fonts...
You'll be prompted to confirm, and then to enter your administrator login password.
Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.

Similar Messages

  • Safari displays wrong fonts

    Recently Safari has been displaying "gobledegook" text/characters in place of the proper fonts on some web pages. One example is Apple's hot news page where this occurs in the body text. The headlines display correct here.
    I've tried reinstalling system/font files to no avail. Some font info. may be corrupt but I am at a loss on how to find or fix.
    Problems started after I installed Font Agent Pro but did not set it to manage system fonts. The only suggestion they have posted at their site is to delete all AdobeFntxx.lst files which I also tried.
    Any suggestions are welcome.
    Russ

    Thanks both Eme and Bee for your help.
    I resolved the issue finally with help from Insider software (maker of Font Agent Pro), with the following cure:
    This usually happens if there are multiple formats of the same fonts activated, such as Helvetica TrueType and Helvetica Type 1. Click the All Fonts tab, then click the activation column head twice (this sorts all the activated fonts to the top) and scroll down to look for the same font name in multiple formats. Deactivate or delete one of the font formats. Also, check to see if you have Helvetica Fractions activated.
    Do you use Font Book? If so, I would suggest that you disable it. We have detailed instructions on our Support/ FAQ page.
    Let us know if you continue to have problems. Thank you.
    Bernadette Ryan
    Customer Support
    Insider Software, Inc.
    I did have many multiple copies of fonts in different formats activated at the same time that I was unaware of. I thought that this program was suposed to automatically remove duplicate fonts, but something went wrong there.
    Anyway, all is well again.
    Thanks everyone.
    Russ

  • ID CC 9.2.1: Interactive PDF, text boxes use wrong font

    When filling out text boxes of an interactive PDF (created with InDesign CC 9.2.1) in Adobe Reader X, the font used is always Times Roman or such. Whatever I've tried so far, I fail to make the interactive text boxes use a specific font. Should be the same font that's used for the rest of the text on the page. During exporting the PDF, I've instructed InDesign to embed all font glyphs.
    Is there a way to get around this problem?
    Andreas

    You have to work on it after exporting to PDF in Acrobat Pro and change the font there.
    BUT: Don't choose exotiv fonts, use the normal standard form fonts, otherwise the file size will increase, because every font in the form must be embedded. Another problem is that older versions of Adobe Reader or Acrobat or some other possible PDF readers only support the standard form fonts, like Helvetica, Times, Courier in Bold, Regular, Italic, and Bold Italic. So it is better to submit to this limitations.

  • Why is getLineMetrics inaccurate when using device fonts* or immediately after resizing a TextField?

    1.  We need getLineMetrics to return correct values immediately after changing a TextField's width/height or any property that would affect the layout metrics, withouth having to alter other properties like setting the text to itself (p1.text = p1.text).  Currently, if you change the width of a text field to match the stage width for example, getLineMetrics will not return correct values until the next frame.... UNLESS you set the text property.
    2.  We also need some kind of "stage scaled" event in addition to the "stage resize" event (which only fires when stage scale mode is no_scale), because stage scaling affects the rendered size of device fonts so dramatically that we must call getLineMetrics again.  This is not the case for fonts antialiased for readability, since their size is relatively stable with scaling, as demonstrated by drawing a box around the first line once and then scaling the stage.
    So those are the problems.  The asterisk in the title of this post is there because it seem that TextField.getLineMetrics is accurate with device fonts, but I cannot take advantage of that accuracy without a way to detect when the player is scaled.  I can only confirm its accuracy at a 1:1 scale, since there is no way to recalculate the size of the line rectangle once the player is scaled, aside from setting a timer of some sort which is a real hack not to mention horribly inefficient with no way to detect when the stage has actually be scaled.
    I use device fonts because embedded fonts look terrible and blurred compared to device font rendering.  The "use device font" setting matches the appearance of text in web browsers exactly.  The only way to get embedded/advanced antialiased text in flash to approximate that of the device font look is to primarily set gridFitType to PIXEL instead of SUBPIXEL, and secondly set autokerning to true to fix problems caused by the PIXEL grid fit type.  That ensure strokes are fitted solidly to the nearest pixel, however it still lacks the "ClearType" rendering that device fonts use, which has notable color offset to improve appearance on LCD monitors, rather than the purely grayscale text that flash uses in its subpixel rendering.  Frankly, failure to use device fonts because of API issues, is the only reason why Flash sometimes doesn't look as good as HTML text and why people say text in Flash "looks blurry".  I'm tired of hearing it.  If the player simply dispatched an event when scaled and updated the metrics immediately when any property of the text field that would affect the metrics is changed, then we could all happily use device fonts and Flash text would look great.  As is stands, because of the two problems I mentioned in the opening paragraph, we're stuck dealing with these problems.
    If you create two text fields named "p1" and "p2" for paragraph 1 and 2, populate them with an identical line of text and set one to "use device fonts" and the other to "antialias for readability", then use this code to draw boxes around the first line of text in each of them:
    import flash.text.TextField;import flash.text.TextLineMetrics;graphics.clear();drawBoxAroundLine( p1, 0 );drawBoxAroundLine( p2, 0 );function drawBoxAroundLine( tf:TextField, line_index:int ):void{          var gutter:Number = 2;          var tlm:TextLineMetrics = tf.getLineMetrics( line_index );          graphics.lineStyle( 0, 0x0000ff );          graphics.drawRect( tf.x + gutter, tf.y + gutter, tlm.width, tlm.height );}
    The box surrounding the line of text in the "use device fonts" box is way off at first.  Scaling the player demonstrates that the text width of the device font field fluctuates wildly, while the "antialias for readability" field scales with the originally drawn rectangle perfectly.  That much is fine, but again to clarify the problems I mentioned at the top of this post:
    Since the text width fluctuates wildly upon player resize, assuming that getLineMetrics actually works on device fonts (and that's an assumption at this point), you'd have to detect the player resize and redraw the text.  Unfortunately, Flash does not fire the player resize event unless the stage scale mode is set to NO_SCALE.  That's problem #1.  And if that's by design, then they should definitely add a SCALE event, because changes in player scale dramatically affect device font layout, which requires recalculation of text metrics.  It's a real issue for fluid layouts.
    The second problem is that even when handling the resize event, and for example setting the text field width's to match the Stage.stageWidth property, when the text line wraps, it's not updated until the next frame.  In other words, at the exact resize event that causes a word to wrap, calling getLineMetrics in this handler reports the previous line length before the last word on the line wrapped.  So it's delayed a frame.  The only way to get the correct metrics immediately is basically to set the text property to itself like "p1.text = p1.text".  That seems to force an update of the metrics.  Otherwise, it's delayed, and useles.  I wrote about this in an answer over a year ago, showing how sensitive the text field property order is: http://stackoverflow.com/a/9558597/88409

    As I've noted several times, setting the text property to its own current value should not be necessary to update the metrics, and in some subclasses of text field, setting a property to its own value is ignored as the property is not actually changing and processing such a change would cause unnecessary work which could impact application performance.  Metrics should be current upon calling getLineMetrics.  They are not.  That's the problem.
    From a programming perspective, having to set the text property (really "htmlText" to preserve formatting) to itself to update metrics is almost unmanagable, and doesn't even make sense considering "htmlText" is just one of a dozen properties and methods on a TextField that could invalidate the layout metrics (alignment, setTextFormat, width, height, antiAliasMode, type, etc.), and I would have to override every one of those properties so that I could set htmlText = htmlText.  Using such a subclass isn't even possible if I want to use the Flash IDE to add text fields to the stage.  I would have to iterate over the display list and replace all existing fields with my subclass, which also isn't a good workaround because there's no way to update any and all variable references that may have been made to those instances.
    Frome what I've read, the invalide+render event system is unreliable.  My layout framework is similar to that of Windows Forms, and performs layout immediately, with dozens of docking modes and uses suspend and resume layout calls for efficiently resizing multiple child objects in a component.  Certain calculations cannot be aggregated for a render event, because some containers are semi-reflexive, meaning they can expand to fit the child contents while also contraining the child size, depending on whether the contain was resized or the child component was resized, so as a matter of correctness the resizing calcultation must occur immediately when the child resizes, otherwise a top-down pass on the display hierarchy for resizing will not be sufficient.
    As far as waiting until the next frame, no that is not possible, as it will cause one frame to be completely wrong.  If I was dragging the browser window to resize it, it would look terrible as virtually every single frame during the resizing operation would be incorrect.  Also, in the case where a user clicks the maximize or restore button of the web browser, the resizing event will occur exactly once, so if the metrics are not correct when that occurs, there is no recalculation occuring on the next frame, it will just be wrong and sit there looking wrong indefinitely.
    In case it's not obvious by now, this is a web application.  It uses the NO_SCALE stage scaling option, so notification of the event is not actually an issue for me personally.  I was just pointing out that for anyone not using the NO_SCALE option, there is no event in Flash to detect player scale.  What you're suggesting is using a JavaScript event and using the ExternalInterface bridge to send a message, which there is no guarantee whether it will be processed in a timely matter by the player and introduces possible platform inconsistancies, depending on whether the browser has actually resized the Flash interface at that point or what state Flash is in when it tries to recalculate the size of the text.  The browser may send that event to flash before the player is actually resized, so it will be processing incorrect sizes and then resized after the fact.  That's not a good solution.  Flash needs a scale event in addition to a resize event.  I'm really surprised it doesn't have one.  At the very least, the existing resize event should be dispatched reguardless of the stage scale mode, rather than occuring exclusively in the NO_SCALE mode.
    Bottom line is that getLineMetrics needs to return correct values every time it is called, without having to set the "text" property immediately before calling it.  If such a requirement exists, which seems to be the case, then that needs documented in the getLineMetrics method.

  • Can't find text in distilled file, using some fonts

    The products I have are Mac OS 10.6.8, Acrobat X and 9, and Word 2011 and Apple Pages for Mac; Acrobat 9 and Word 2007 for Windows XP.
    There are numerous ways to create PDFs on both platforms, whether through save as or creating a PostScript file and distilling it. The problem is that with docs I have using Calibri, Cambria, and Candara, if I distill a PostScript file made from Mac Word or Pages, neither Acrobat nor Apple Preview can find text in the resulting PDF, whether the file distilled with Mac or Windows Distiller. (Meaning a "find" for a string comes up as not found.)  All other combinations are okay, even writing a PS file in Windows Word and distilling with Mac Distiller.
    I mention the fonts specifically because most of the time I use OTF faces, which always work. I even tried using the Windows TTF versions in the Mac operating system -- same failure.
    And even if I force these fonts to be embedded in the Distiller job options, still no joy. If I take so much as a comma and set it to an OTF, I can find the comma. Also, Acrobat *can* find Arial text in a Visio flowchart placed in the Word doc. I don't know how the author placed it there, but it's probably copy from Visio, paste into Word.
    The reason why I care about this is because the distilled PFDs are just a tiny bit better looking on the screen than other options, such as "Save as PDF" from the Mac OS Print dialogue. The only other one that looks as good is the Create PDF button in Windows Word, but I would rather not have to use Windows just to get a better-looking PDF.
    So to summarize:
    Mac app > write PS file > Mac Distiller = fail
    Mac app > write PS file > Win Distiller  = fail
    Win app > write PS file > Mac Distiller  = okay
    Win app > write PS file > Win Distiller  = okay
    Mac app > save as PDF directly > okay
    This might not be a problem with Distiller per se; it could be the Mac OS engine that creates the PS files. You see, I had heard that Apple used their own internally developed engine for the options to save PDF files directly, but was using Adobe code when one used the option to write a PostScript file, so that's why I'm so surprised and disappointed it fails.

    tlmurray23 wrote:
    The reason why I care about this is because the distilled PFDs are just a tiny bit better looking on the screen than other options, such as "Save as PDF" from the Mac OS Print dialogue. The only other one that looks as good is the Create PDF button in Windows Word, but I would rather not have to use Windows just to get a better-looking PDF.
    Hmmm. In what way are Distilled PDFs "a tiny bit better looking on screen" than those made by OS X?
    You are viewing both in the same app and platform?
    And you're referring to font display?
    What settings are you using in Distiller which you think might have some bearing on this?
    tlmurray23 wrote:
    This might not be a problem with Distiller per se; it could be the Mac OS engine that creates the PS files. You see, I had heard that Apple used their own internally developed engine for the options to save PDF files directly, but was using Adobe code when one used the option to write a PostScript file, so that's why I'm so surprised and disappointed it fails.
    OS X's native graphics drawing environment, Quartz, is essentially a "Display PDF", so creating a PDF file is a very simple procedure.
    Writing PostScript for printing uses Apple's own cgpdftops CUPS filter. I doubt there is any "Adobe code" as such, and I dispute the implication that "Apple code == bad; Adobe code == good", which you seem to suggest.
    The specifications for PDF and PostScript are clearly documented, and it should be easy for anyone to follow them.
    However, the fact remains that when Apple converts these MS fonts to PS, something goes wrong. It may be a bug in Apple's code; or it may be that Apple it strictly interpreting font data which MS is playing fast and loose with. Windows' own PS export would no doubt be designed to work with the looser implementation in MS's fonts. This is just hypothetical of course, though is in keeping with tradition.
    What you could do is use a decent text editor like TextWrangler (free from BareBones software) to compare the PostScript code from Windows and OS X.
    You could also look a the Properties tab in Acrobat of the PDFs, and compare the font encoding.
    You could also test running out PostScript from any other app on OS X that you have using those fonts.
    However, I think it is unlikely that you will see resolution unless MS releases a new version of their fonts, or some new version of OS X makes an amendment to fix the bug or cater for the MS issue. Perhaps Lion will do this; perhaps it won't.
    Are you using the versions of these fonts that came with Office 2011 for Mac? What happens if you use the Windows versions of the fonts on OS X?

  • Open pdf and the text is in written in wrong font

    hi
    i have a problem with my illustrator.
    i created a pdf file a long time ago. the text is written in times new roman regular.
    now when i open the pdf in illustrator it shows a wrong font. i think the wrong font could be new times romance or something)
    but if mark the text and change the font from regular in bold, it shows the right font (times new roman bold).
    how can i change back the text in times new roman regular?
    im using cs4 on win7. already checked the fonts in systemfolder
    thanks a lot
    thanks

    i deleted and nothing happened.
    edit: i checked the the font with an fontanalyzer. it seems that the font was not new times romance. i deleted the analyzed font and now illustrator showe me the right font.
    thanks

  • Showing bangla character in all types of java mobile using bitmap fonts

    i am a new user of j2me.but i cannot find any helps.
    i want to do english to bangla dictionary for all types of java mobile using bitmap
    fonts.
    initially how can i display bangla character using bitmap font in non unicode supported java mobile???
    but i cant do it.
    please send me source code or any helping resource.
    i am waiting for your reply.

    More info; installed mplayer2 which should work better with vdpau and this happened;
    VO: [vdpau] 800x468 => 800x468 Planar YV12
    [vdpau] Got display refresh rate 60.015 Hz.
    [vdpau] If that value looks wrong give the -vo vdpau:fps=X suboption manually.
    A: 6.3 V: 6.4 A-V: -0.000 ct: 0.000 0/ 0 1% 2% 0.2% 0 0
    [h264 @ 0xb6b41640]left block unavailable for requested intra mode at 0 23
    [h264 @ 0xb6b41640]error while decoding MB 0 23, bytestream (1111)
    [h264 @ 0xb6b41640]concealing 399 DC, 399 AC, 399 MV errors
    A: 6.5 V: 6.6 A-V: 0.000 ct: -0.000 0/ 0 1% 2% 0.2% 0 0
    Seek failed
    Seek failed
    Seek failed
    Seek failed
    Seek failed
    Seek failed
    Alot of those "Seek failed"!

  • Urgent :Using a font face name in a JtextPane

    1)How can I use a font face name for setting the font of the text I display in a JTextPane.A call to textPane.setFont() does not work I could find a method StyleConstants.setFontFamily() , but , if I'm not wrong, that would set the font family only and hence the valid arguments to the method would be family names like "Serif", "SansSerif", "Monospaced", "Dialog", and "DialogInput", and not a facename like "Courier".
    2) Also because I cannot use a java.awt.Font object for JTextPane, I cannot use a cache for fonts so that I can share a Font object across multiple JTextPanes. Any ideas?
    Regards
    Nikhil.

    I am not sure how to answer this because you do not
    make it clear why you cannot use a
    java.awt.Font.The reason for this is that if I invoke method setFont (java.awt.Font) on a JTextPane , it has no effect.
    The only way I could find for setting a font in JTextPane is to use StyleConstants.setFontFamily() which
    takes a font family name as a string. As a result , if I have multiple JTextPanes with the same font,
    I'm not sure if internally some sort of caching would be used by the java runtime.
    If only I could use setFont(java.awt.Font) ona JTextPane, I could have cached java.awt.Font objects
    and supplied the same Font object in setFont(java.awt.Font) method of all the JTextPanes that have
    text with identical fonts.
    If you define a
    java.awt.Font in a high-level class, and pass
    it to many JTextPanes it will only be cached once,
    because of oblique passing-by-reference used by the
    JVM.

  • Using a font embedded swf in mxml

    Hello,
    We need to load in fonts at runtime due to localization needs. I've got this working in an AS3 project in Flex by embedding the font in a class and then loading that swf into another class and registering the font.
    What I need now is to be able to use that font class in MXML components like a spark label. I can't seem to get it to work though. I've tried referencing the swf in a style sheet, then making a style class in the CSS using that font like this:
    /* Embed.css */
    @font-face {
         src: url("_Arial.swf");
         fontFamily: "_Arial";
    .genericTextArial
    font-family: "_Arial";
    fontSize: 40;
    color: #000000;
    Then in the MXML I have this:
    <?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="955" minHeight="600">
         <fx:Style source="Embed.css"/>
         <s:Label text="This should display my embedded text." width="100%" styleName="genericTextArial"/>
    </s:Application>
    However I can't seem to get it to render. I've also tried the method of embedding the font in a text field in Flash Professional and loading in that swf and it doesn't work either. Am I missing a parameter or just going about this the wrong way?

    Thank you, that worked! I actually didn't know exactly how to do that at first but I found this great blog post that explains it:
    http://www.softwarebyrichard.com/content/embedding-fonts-flex-4

  • Html to image but wrong font

    I found some code to convert an html to an image.
    Using the codeexample, i get a nice png-image but it has a wrong font.
    I tried changing it in the html-source but it doesn't help.
    any idea?
    import javax.imageio.ImageIO;
    import javax.swing.*;*
    *import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import java.io.IOException;
    import java.net.URL;
    public class Test {
    private static volatile boolean loaded;
    public static void main(String[] args) throws IOException {
    loaded = false;
    File mySignature = new File("d:/mypage.htm");
    URL url = mySignature.toURI().toURL();
    JEditorPane editorPane = new JEditorPane();
    editorPane.addPropertyChangeListener(new PropertyChangeListener() {
    public void propertyChange(PropertyChangeEvent evt) {
    if (evt.getPropertyName().equals("page")) {
    loaded = true;
    editorPane.setPage(url);
    while (!loaded) {
    Thread.yield();
    File file = new File("d:/ex_mypage.png");
    componentToImage(editorPane, file);
    public static void componentToImage(Component comp, File file) throws IOException {
    Dimension prefSize = comp.getPreferredSize();
    BufferedImage img = new BufferedImage(prefSize.width, comp.getPreferredSize().height,
    BufferedImage.TYPE_INT_ARGB);
    Graphics graphics = img.getGraphics();
    comp.setSize(prefSize);
    comp.paint(graphics);
    ImageIO.write(img, "png", file);
    }Here is the html code
    <html>
    <head>
    <title>Test</title>
    <style type="text/css">
    body {
    font-family: Verdana, serif;}
    </style>
    </head>
    <body>
    <table border="0" width="700" cellspacing="0" cellpadding="0">
    <tr>
    <td colspan="2" bgcolor="#1D4667" align="center">
    <font size="-1" color="#FFFFFF">Title</font></td>
    </tr>
    <tr>
    <td><font size="-1">Normal Text</font></td>
    <td><b><font size="-1">Bold Text</font></b></td>
    </tr>
    </table>
    </body>
    </html>

    I ran your code and the output text looked like it was plain. However, all the Verdana fonts on my system look
    pretty close to plain text, so I didn't know wether it was working or not.
    So I ran your code but replaced the font with a more stylish one on my system (called "Chiller") in the html file. I got the correct results.
    The posiblity then exists that "Verdana, serif" in your html file is not the proper way to reference
    the font you're looking for. And if the JEditorPane can't find the font name on your system it defaults to plain text. "Chiller"
    seemed to work fine for me.

  • Can I use Hebrew fonts in Illustrator CS3?

    Can I use Hebrew fonts, which are loaded and enabled in Illustrator, CS3? Although they are listed in the Character palette, the Hebrew fonts appear at the bottom of the list enclosed in < > brackets. When I choose such a Hebrew font, the letters appear as blank rectangles in my document? Font Book says they are valid Truetype fonts. What's wrong?
    Thanks for any help.

    i found this info from this link: http://forums.adobe.com/message/3466307.  The user who asked this question stats this solution worked for them.
    First in Language and text preferences in the system preferences select Hebrew as the input method.
    The in Illustrator click the text tool in your document or drag to create a text frame.
    While the cursor is active select a hebrew font
    then go to the menu bar for the finder and where there is the American Flag pull it down and select hebrew
    now go back to the document and start typing.
    Remember if you do not have the ME version you have to have it flush right and type backwards.

  • Applet loading and using ttf font

    Hello,
    I'd like my applet to load a TTF file from the server (or from a provided jar file) and
    use it to render text, or use it with GUI elements like TextArea.
    Here the significant part of my code:
            URL fontURL=applet2.class.getClassLoader().getResource("my.ttf");
            try { fontStream = fontURL.openStream(); } catch (Exception e) {
                str=str+"Error 1\n";
                e.printStackTrace();
            str=str+"Step 1\n";
    // also tried this way instead, as well as including the ttf in a jar or as separate file on the server
    //      fontStream = getClass().getResourceAsStream("my.ttf");
            try { font = Font.createFont(Font.TRUETYPE_FONT, fontStream); } catch (Exception e) {
                str=str+"Error 2\n";
                e.printStackTrace();
            str=str+"Step 2\n";
            try { fontStream.close();} catch (Exception e) {
                str=str+"Error 3\n";
                e.printStackTrace();
            str=str+"Step 3\n";
            big_font=font.deriveFont(40f);
            text_out_main = new TextArea(str,4,40,TextArea.SCROLLBARS_NONE);
            text_out_main.setFont(big_font);the funny thing is, that this works on several Linux installations I tried (all UTF8/Unicode based ones).
    And I tried several WinXP/Win2k FF/IE/Safari combinations and none of them works! The Windows
    machines all show a standard font but with the size 40f, I cant see any exceptions, the strings "Step 1"
    to "Step 3" are nicely attached to the main string and not a single "Error x" string appears.
    All systems use the latest jre 1.6 plugins.
    Any hints are appreciated.
    Thanks,
    Leander
    Edited by: Leander2000 on Jun 7, 2008 5:55 AM

    Meanwhile I found out that the TextArea (or probably any other awt gui element)
    did not use the font when running on Windows, when drawing to a Graphic or using
    it with a JTextArea everything is ok.
    Regards,
    Leander

  • Using UNICODE fonts in Adobe Ps CS5

    Hi friends and professionals:
    I've got problem with Ps CS5 when I use UNICODE fonts (this is not the case for former Ps CS versions). Someone who know how to fix this problem, please help! Thanks.
    TLe
    PS: Ps CS5 lastest version/ Windows 7 64bit /Dell XPS-8100  8GB RAM . It has no problem with MS Office 2007

    ThLgLe wrote:
    I've got problem with Ps CS5 when I use UNICODE fonts
    Dang!  My crystal ball is on the fritz again.
    Could you please describe a little more about what's going wrong for you, specifically?  Clarify what you mean by "use Unicode font".
    Your question might have been meaningful if everyone was seeing the same, obvious problem, but in fact Unicode character codes seem to show just what's expected in Photoshop in general if the font you're using has the glyphs.
    -Noel

  • Wrong font in PDF opened in Preview

    I have a Mac G5-Intel running 10.5.4. The problem is as follows:
    I make a figure (a plot) with Igor, save the plot as EPS. I use Preview or "epstopdf" command to get the PDF.
    For figures I processed before this problem showed up, the Preview displays the wrong font, but Acrobat displays the correct font (this is the font I selected in Igor when I first made the plot).
    For figures processed after the problem showed up, both Preview and Acrobat display the same wrong font.
    If I open the EPS version using some other application such as Canvas (a drafting software), the font displays correctly.
    If I try to alter the font in the PDF file using Acrobat (full version), the font cannot always be changed because "The compatible system font and the document font may differ and some characters may look different. If the font is not on your system, there will be no way to re-embed it. Do you want to proceed?" message appears. I click "yes" and the font changes to Arial (I had requested Helvetica).
    If I then want to change the font again to the previous condition, Acrobat refuses because "The change to a different font was not done because the chosen font and the font encodings in the document differ and could not be resolved."
    The problem never occurred in my older Mac Power PC running 10.4. In my new Intel Mac, there was a trouble-free couple of weeks after I got the machine.
    The problem doesn't happen when I take my pdf figures to a colleague's identical machine or to my Intel MacBook Pro laptop running 10.5.2.
    Any ideas?
    Thanks

    The problem also affects the same plots when they are part of a Latex output PDF made with TexShop. I thought this is normal, since Texshop uses Mac's PDF Preview machinery to process.

  • Safari trackpad gestures font resize suddenly disabled in 10.8.2 after update? Can't find way to re-enable.

    Hello, I rarely come here for help but I am really puzzled...
    Safari trackpad gestures font resize were suddenly disabled in 10.8.2 and I wonder if it was after a recent update?
    Can't find way to re-enable. Checked everywhere (Touchpad, Accessibility, etc.).

    I had a similar problem with my mac. I connect via Airport and one day after I updated some 3rd party software I had the same experience with Software update. I also couldn't connect using Safari however Firefox worked fine and as expected the Network was hooked up and running fine. I didn't try adding an Administrator account which sounds like a good idea since I just did a backup of my system the night before. I cloned my mac from my external drive and everything worked fine. I believe that a system file was corrupt which was causing my problems. So if the new Administrator account doesn't work it's a system wide problem and you options would be to archive and install or using a backup if one is available. Good luck.

Maybe you are looking for

  • How can i copy and paste an image from 1page to another on iPad

    i have been trying all afternoon to get copy and past to work on images from 1 page to another, are shortly going on holiday and thought i would keep in contact with a website that i belong to, to be able to go on the forum and take part in the quiz'

  • Content Server & cFolder Integration via Different Application

    Hello, We have cFolder 3.1 and content server. cFolder and Content Server is integrated. User can add file via cFolder & this file will be visible in cFolder. But Customer has a different requirement. They want to upload files to content Server Direc

  • Bootcamp 2.0 and Windows 7 issues

    I currently have a 17" Macbook Pro circa 2008, currently running OS X 10.5.8. I've had it partitioned with Windows 7 for almost the entire time I've had it and just recently I reformatted the Windows 7 partition after it began to crash a couple of ti

  • Java 1.3 comparing two dates using Calendar.before(Calendar)

    Has anyone used the Calendar.before() method for comparing two dates, how accurate is this? Some users have found problem with this method, is this true?

  • What is with MSVCR100.dll and Crashes?

    While in Develop I clicked on an image in the filmstrip solely to change its colour rating. While doing that the dreaded white screen....close program...and that's the second time today while doing a 'nothing' action Its predominantly reported in the