Very weird font problem which appeared suddenly

I have no idea how to describe the problem as I am no native speaker. The following screenshot shows the problem, it has yet only occured within Firefox:
http://i.imgur.com/zNegO.png
The circled slash should be either fi, fl, or ff (like I have indicated)... as I am typing these examples they also appear as these things, they are not exactly the same btw (also I hope they are coming out regulary for you, otherwise reference the screenshot).
What caused this and how can i fix (there it is again, when typing f-i-x) it? Thank you.

nae64 wrote:Are we all using German locales, or is it a more general problem with fonts?
I'm using mostly Polish locale:
[karol@black ~]$ locale
LANG=pl_PL.UTF-8
LC_CTYPE="pl_PL.UTF-8"
LC_NUMERIC="pl_PL.UTF-8"
LC_TIME="pl_PL.UTF-8"
LC_COLLATE="pl_PL.UTF-8"
LC_MONETARY="pl_PL.UTF-8"
LC_MESSAGES=C
LC_PAPER="pl_PL.UTF-8"
LC_NAME="pl_PL.UTF-8"
LC_ADDRESS="pl_PL.UTF-8"
LC_TELEPHONE="pl_PL.UTF-8"
LC_MEASUREMENT="pl_PL.UTF-8"
LC_IDENTIFICATION="pl_PL.UTF-8"
LC_ALL=
If I copied those words and pasted them to vim or ever the firefox searchbox - they appeared OK. The problem was only with rendering on the webpage.

Similar Messages

  • Very weird font problem

    I have a very weird and annoying font problem with the left menu bar of iTunes 8.2(23)
    Some but not all menu items are displayed like a mix of Hebrew and unprintable caracters.
    But once the menu item is selected, the font is back to normal !
    The weired thing is that TV Series and Shopping cart menu items are displayed (in French, because the interface is in French) as expected.
    I don't know if it is related, but I have Russian-PC keyboard installed too, Adobe CS4 (which installed Adobe fonts) and my OS interface is in French.

    How did you go about finding this Lucida Grande.ttf? I did a search and didn't find it. I have the same weird font thing in itunes. I recently installed a whack of fonts from another computer. Any help would be appreciated.

  • Weird font problem - Can't remove/navigate "Favorites".

    My 'Fonts' dialog won't let me delete any fonts from either the "Favorites" or "Recently Used" collections. Furthermore, it's difficult to select a font from either list. And I can't use the arrow keys to navigate up/down the list, it will touch a couple of them, but it just alternates between them.
    I tried removing the font cache 'sudo atsutil database remove' and rebooting. No effect. I also found that one font, Ariel, had some 'Minor' problems (according to FontBook), so I removed it, cleared the font cache again, and rebooted. No effect.
    I googled around and couldn't find any solutions.
    Has anyone experienced this before? Very strange. Fonts themselves seem to be working okay, but having a corrupt Font Dialog (if that's what it is) is annoying.
    Here's a picture of what I see in my Fonts Favorites list: <http://iridesnow.com/images/fonts.png>

    Which OS are you using?
    I posted this message in the "Mac OS X v10.5 Leopard" discussion category. That is the OS I am using.
    Why do you want to delete fonts from your lists?
    Maybe they're not my "favorites" any more, or haven't been used "recently". Why does it matter? I should be able to, at a minimum, remove fonts from my Favorites collection.
    "Your Favorites" are the fonts that are used the most.
    They are fonts that I added to that collection. It shouldn't matter how often I use them.
    And "Most Recently Used" are exactly that.
    Except several of them have not been used recently (depending on your definition of the term "recently").
    What exactly is the error message, and does it only refer to Arial?
    It did not say. FontBook simply said there were "minor" problems with certain versions of the Arial font.
    Arial is used by Word.
    Good to know. I never use MS Word, nor do I use Arial.
    What do you think you will gain by trying to remove Arial?
    Fwiw, I did not completely remove it, only the (four out of five) aspects of it that FontBook said had "minor" problems. My thinking was that perhaps a corrupted/problem font in FontBook was somehow interfering with the Fonts dialog ability to correctly display/manipulate the contents of the Favorites and Recently Used collections. It was an unlikely long shot, but since I never use Arial, I didn't care about removing it. And "removing" actually only moves the files into the trash, so if I wanted I could have retrieved them.
    Rob

  • Weird font problem (Crazy Diamond font)

    Win XP Pro SP2 with ID 5.0.4 -- I'm using a Crazy Diamond 17th century font (www.crazydiamond.co.uk) to simulate old-style printing. Thus, "Mississippi" becomes "Miffiffippi" (long "s") and so on. If I write "This is the other" in regular or italic font, it looks as expected in Photoshop.
    But in InDesign, it reads "Þis is xþe oðer" -- That is, each "th" is replaced by an old-style character. I can turn this option on and off in Photoshop, but not in InDesign. So, I wrote to Crazy Diamond and they sent a replacement regular font which cured the problem--which they already knew about. But the problem still exists in their italic font. I've written to them twice about the italic problem, with no response.
    So, it's a pretty obscure problem, but I figured I'd mention it here, just in case anyone else has run into a similar problem, and knows of a work-around. I suppose I can just dump the font and use something else, but aside from this glitch, it really does what I'm looking for.
    Any suggestions?
    Thanks, John

    The fontsmith's info makes it quite clear that th/thorn etc. is a
    localization thing. Historical is only long esses:
    http://www.crazydiamond.co.uk/ot-features.html
    This seems to work for me inasmuch as it certainly toggles the
    otfLocale feature on and off for selected text (the equivalent of
    checking/unchecking it in the OTF flyout if it were there, which it
    isn't), but I don't seem to have any font with that feature to test
    it on:
    //ToggleLocale.jsx
    //An InDesign CS3 JavaScript
    //Nicked and adapted from another script supplied with ID CS3
    //Switches between Localized and Non-localized OTF features
    if (app.documents.length != 0){
    //If the selection contains more than one item, the selection
    //is not text selected with the Type tool.
    if (app.selection.length == 1){
    //Evaluate the selection based on its type.
    switch (app.selection[0].constructor.name){
    case "InsertionPoint":
    case "Character":
    case "Word":
    case "TextStyleRange":
    case "Line":
    case "Paragraph":
    case "TextColumn":
    case "Text":
    case "Story":
    //The object is a text object; pass it on to a function.
    myProcessText(app.selection[0]);
    break;
    //In addition to checking for the above text objects, we can
    //also continue if the selection is a text frame selected with
    //the Selection tool or the Direct Selection tool.
    case "TextFrame":
    //If the selection is a text frame, get a reference to the
    //text in the text frame.
    myProcessText(app.selection[0].texts.item(0));
    break;
    default:
    alert("The selected object is not a text object. Select some
    text and try again.");
    break;
    else{
    alert("Please select some text and try again.");
    function myProcessText(myTextObject){
    if (myTextObject.otfLocale == true)
    myTextObject.otfLocale = false;
    else
    myTextObject.otfLocale = true;
    Noel

  • HELP ME! My computer is posessed! Very weird power problem!!!!

    I am using an iMac - first generation of intel-based iMacs - and I have a very weird powering-on and powering-off problem.
    When I plug my iMac into the wall socket, it starts up on it's own. When I shut it down (using BOTH the apple menu OR the power button), it starts itself right back up. When I put it to sleep, it goes to sleep and then wakes up immediately. It does restart normally, though, so it seems that my iMac simply has a problem with being OFF!
    Help meh! I'd like to save a trip to the Apple Store if I can help it!

    Hello DrackerDesign
    Welcome to Apple Discussions
    {quote:}I am using an iMac - first generation of intel-based iMacs - and I have a very weird powering-on and powering-off problem.{quote}
    Reset the SMC, as per > http://support.apple.com/kb/HT3964
    +1. Shut down the computer.+
    +2. Unplug the computer's power cord.+
    +3. Press and hold the power button for 5 seconds.+
    +4. Release the power button.+
    +5. Attach the computers power cable.+
    +6. Press the power button to turn on the computer.+
    {quote:}When I plug my iMac into the wall socket, it starts up on it's own.{quote}
    It will do that if the box *☐ Start automatically after a power failure* on the Energy Saver preference panel is checked.
    {quote:}When I shut it down (using BOTH the apple menu OR the power button), it starts itself right back up. When I put it to sleep, it goes to sleep and then wakes up immediately. It does restart normally, though, so it seems that my iMac simply has a problem with being OFF!{quote}
    If the SMC and Energy Saver Preference changes do not cure these problems, then you will need to seek service help.
    Dennis

  • Weird fonts problem

    The other day, I noticed that the fonts in my folder looked a bit off. For example, if I look at my "Applications" folder, it looks like some letters are in bold while others are not.
    The same thing is happening in Safari. Certain letters don't appear at all, while others just appear to be formatted incorrectly. In fact, while I'm typing this very message, the font looks 'wrong'.
    It's hard to describe, but it looks like when you take a font and use it in a size that it wasn't formatted for.
    Any ideas??

    Not sure how I fixed it, but I did. I played around with my 'smooth fonts' setting, so that may have been what the problem was. But, I'm really not sure.

  • Very weird internet problem :I

    Hi everyone, I am calling for all the experts because I have spent my last two days resolving this problem without any success.
    I moved to a new location Saturday where I set up my Airport Extreme to provide a wifi network. The extreme is connected to the ISP's modem in Bridge mode. ISP modem address is 192.168.1.254. My Macbook gets usually the 192.168.1.4 IP address, DHCP is the 192.168.1.254. I have in this network my MacBook and the wife's Vista on a desktop PC. MacBook is up-to-date with 10.5.8. (Or, better to say, that was the starting system version)
    What I experience is, that some of the websites are working in my MacBook (meaning they are loading in), while some not. That means white page, no content at all, loading goes forever. For example youtube does not come in. Adobe does not come in. Apple.com works. I couldn't find any pattern why a site can't load.
    Safari and Firefox makes the same, so it is probably not a Safari bug.
    The machine with Vista (on the same network) works with every webpage (using Firefox). I didn't had this problem on the old location.
    I did the followings:
    - I took my MacBook back to the old location, where the old network I used for years still works. Same problem. Never had this before. Then a got back to the new location.
    - I connected the MacBook via cable to the Extreme (Aiport in MacBook disabled), same problem.
    - I created a new user, nothing.
    - I created a new network location, nothing.
    - Reset Safari, nothing
    - Tested browser capablities in various sites. I had some which were not loading at all, but the ones that worked gave back a good result, meaning every plug-in worked.
    - Reset modem, reset Airport Extreme, nothing
    - Changed wifi channel (from 6 to 4), nothing. I live in a village, no wifi pollution anyway.
    - Deleted Safari and System cache, nothing
    - Verified Disk permissions, some problems were found, repaired them, nothing.
    - With the help of apple support I deleted some System configuration files which were automatically generated by new start, nothing
    - I did a complete archive and install
    - I tried out everything without an update (that means 10.5 and Safari 3.0.4), almost the same.I had some pages which were working after 2-3 min waiting, but with youtube for example I get some weird, almost only text content with small pictures and no video. After 2-3 min wait of course. And a message, that java is old. Hit the link, went to Adobe, slowly loading but I couldn't download the .dmg, Safari says network error, server could not be found.
    - The I did an update (through Software Update, bandwith was O.K). System 10.5.8, newest Safari, the same problem that I had before archive and install. Youtube won't load at all.
    - Then I did a complete new install with erase. Nothing, problem stays!
    So, now I am sitting in front of a brand new installed MacBook with 10.5 (no updates yet after installation) and I really don't know what to do now. The problem seems to be not software related. The problem seems to be not network related (Vista works on the same network). Can this be a hardware problem? I really can't imagine it...

    I did talked to the ISP and got the access codes to the ISP router. It's a WLAN broadband router, by operating mode I see the following option checked:
    Wireless ISP: In this mode, all ethernet ports are bridged together and the wireless client will connect to ISP access point. The NAT is enabled and PCs in ethernet ports share the same IP to ISP through wireless LAN. You must set the wireless to client mode first and connect to the ISP AP in Site-Survey page. The connection type can be setup in WAN page by using PPPOE, DHCP client, PPTP client or static IP.
    So, would it mean, that if I connect my Extreme in bridge mode, than I do not have double NAT and that is the correct way of connection?
    To clarify the situation, I have a microwave antenna and that is connected to the ISP router. Then a LAN port of the ISP router is connected to the WAN port of the Extreme. (I did try to connect it to a LAN port of the Extreme, everything was the same).

  • Very weird monitor problem, betcha can't solve this one.

      OK I have a MacBook Pro 2.4GHz with 4GB of Ram, it's fully up to date with Lion, and is connected to a Formac W2300-1U 23 inch TFT Monitor (DVI, VGA, 1920 x1080, 1000:1, 5ms, 400cd/m²) through a HDMI to Mini port adaptor.
    Now, the problem is the monitor flicks off, then on, at first I thought it was just randomly, but today I isolated the problem to something specific that make it happen. When I open the preference panel, and click on 'Trackpad' as soon as the video demo starts to play the monitor switches off then on.
    It's totally weird, what on earth could be causing this? Any ideas?

    ok well i have no idea what happened. i started out again with a fresh installation of JBoss, and it worked. no clue as to what was wrong. musta been some JAR that was out of place or something.
    thank you for your help!

  • Very critical font problem in premier pro cs5

    Hi,
       I am trying to compose using third party fonts (e.g. shreelipi), in premier pro CS5, it's showing me all fonts in list, but when I try to apply the fonts it does not give the required character or u in short it does not apply's the fonts. Messed up with this problem, if some one knows the solution then please help me out for the same.
    Regards.
    sagar salunkhe.

    Try it in Photoshop instead.

  • VERY weird iPod problems...Please Help!

    Okay, folks, do I have a doozy of a problem here.
    Okay, first off, when I connected my iPod to the computer a week or so ago, it told me that there was a firmware update, so I downloaded it and installed it. That is where my problems began. Soon after, the iPod began to freeze a lot while playing songs. I would reset it, but it would continue to freeze while playing songs.
    Next, I turned the iPod on yesterday after having not used it for 2 or 3 days and when it came on, ALL of my songs were gone. It said that there were ZERO songs on the iPod. But the kicker is that it still said that I had the same available space as when I had 3500 or so songs on it. (Don't worry, I have back-ups of those songs, so I didn't lose them).
    So, I figured that I would try to reformat the iPod and maybe then things would start to work. That doesn't happen. When I try to run the updater (with or without the iPod initially connected via Firewire), it just sits there on "Initializing...." and freezes.
    So I then figured that maybe I should just try to run the software that came with the iPod and maybe that would help. Well, last night I ran the software and after running through the entire line that lights up on "Waiting for iPod" 4 or 5 times, it told me that the iPod needed to be formatted. So I clicked the "Format" button. This morning, I came to check on things and it was still "Formatting" with no end in sight. It did not take this long when I originally installed the thing.
    That made me think there might be a problem with the harddrive, but when I went into "Diagnostic mode" and ran the HDD scan, it came back as "Pass". Now, that may mean that there are still problems, but it's nothing I can think of how to fix at the moment.
    This is my last resort before I call Apple and probably have to pay to get it fixed! By the way, I've had it since January of this year. Thanks for any help you guys can be!
    -Eric

    First of all, replying with "I have had the same problem and Tech Support hasn't been able to help me at all!" is not going to help anyone.
    In fact, it's kind of considered "thread-jacking" and is considered rude.
    As for my problem, it has been solved (some-what). I succumbed to downloading Windows XP Service Pack 2 (which I had always heard was death for iPods so I avoided it) and things are now running. Not as smoothly as they did before updating to the latest iPod firmware, but still they're running.
    My advice for the future, if you're having problems, start your own thread. Don't jump onto someone else's thread because no matter how similar your problems may be, there is no possible way that your problem could be EXACTLY the same as that other person. There are going to be differences between computer configurations, etc.

  • VERY WEIRD MIC PROBLEM! After latest upgrade(23.4.A.0.546) Z2

    Hi Guys, I've upgraded my phone to 23.4.A.0.546. After this upgrade i had problems with microphone on calls. Btw, every other apps using mic is ok. Here are the cases that mic does not work or work.    It's very annoying. Any ideas?    

    Sergio, I believe you have no other alternative but to wipe all data and start from stretch. Do you have any 3rd party apps that are not from Play Store? Most of the time they are the ones giving you problem. Try transferring their apk to cloud, delete them before updating. Than put them back if you need them after completing the repair.

  • Weird font problem on Yosemite pop up boxes

    Has anyone found a solution to this bug when a dialog/pop up box occurs in Yosemite? I've already tried to reset my fonts, removed error font's and cleared font cache and still no luck.

    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.

  • Very weird disc problem! Only Witcher disc gets stuck inside everytime

    This is not trolling. Some people on Reddit thought I am trolling but I am not.
    I have three game discs, all work fine except Witcher 3. Everytime I eject it with the controller option or by pressing the button on PS4 it gEts stuck abd I have to manually eject it. Why is this happening ? I had my PS4 for 8 months now and it's only in the past two weeks this happens everytime I play Witcher. What can I do? Please help.

    Is the Whitcher disk physically different in dimension than normal, even by a small amount, or slightly thinner or thicker?

  • 10.1 Bar Code 3 of 9 Font Problem

    We have several forms that use the bar code font 3 of 9. Since the 10.1 release the bar code has stopped rendering correctly. At the moment we are rolling back to 10.0.1 and that appears to resolve the issue however, it is a band-aid and I would like a real fix. Any advice is appreciated.

    Looks like SKANDATA C39 Normal font.  This form has two bar codes on the
    bottom.  One is static and that one works fine the other populates based
    data entered into a form field and that is the one that breaks.  It looks
    more like multiple box's rather than a bar code after it populates.
    From:   George Johnson <[email protected]>
    To:     Aaron Clevenger <[email protected]>
    Date:   07/07/2011 12:02 PM
    Subject:        10.1 Bar Code 3 of 9 Font Problem
    Which bar code font are you using, exactly? Have you tried a font from a
    different vendor/creator to see if a different font works?
    Some of the free bar code fonts are not the highest quality. Since they
    are so simple and easy to make, quality can suffer if the creator is not
    aware all the issues.

  • FCPX crashing when text inspector open, I suspect a font problem. Help!

    I have encountered a problem where FCPX will crash whenever text propertys should show in the inspector tab (Text can be edited when the inspector is closed).
    After searching google, this appears to be a common problem. Everyone seems to say the symptoms indicate a font problem, which I suspected. However after using font book to verify my fonts, getting rid of 3rd party installed fonts and then messing up my fonts library
    terribly (still trying to figure out what exactly I did). I seem to have no luck.
    Has a solution be discovered yet? I need to be able to change my font settings not just edit text! Please help!

    Isn't that just the way things work. After working on this problem for many hours and several days I post here and within a few more hours it works itself out. <embarrassed>
    I used font book to turn off all fonts but the ones the OS needs to run, and it turns out somehow I ended up with duplicates of those ones. After a struggle to get rid of the duplicates I also deleted FXPs preference files. Now I can edit the text in the properties/info pane again!

Maybe you are looking for