Character palette not showing type preview – CS5.5 (Mac)

Hello, I had a problem that appeared literally out of nowhere with Illustrator CS5.5 on the Mac – I've been running 10.9.5 without issue until now when the contextual menu that usually shows a preview of the fonts available stopped showing all but two or three previews (attached an image to show the issue). I tried re-installing Illustrator which didn't make any difference, I then tried going to Illustrator > Preferences > Type and in the options there turned "Font Preview" off. The list of fonts then re-appeared but disappeared when that options was turned back on. I then tried altering the Font Preview size to small and that finally brought back the proper font previews in the contextual menu. They were also present when the large option, however they will not appear with medium selected as the font preview size. I then closed Illustrator, and trashed the preferences by holding down Command, Shift, Option and Control when starting Illustrator backup. I'm not sure if anyone else has had this issue or similar, but hopefully it'll help what can be a frustrating glitch!

This is a problem on Mac OS. Go to System Preferences/Accessibility/Display and check the box that says Reduce Transparency.

Similar Messages

  • Cell background colors are not showing in preview - help? - DW4

    Hi,
    I created a horizontal table for my menu bar, and gave each cell a different color by creating a separate class for each with background image - image is a block of color created in Photoshop. In design mode they look they way I want, but in preview (Safari) the colors don't show up at all - the whole area is gray, and all I see is the text for each cell. Can someone tell me what I'm doing wrong? Alternatively, is there a better way I can set this up to have different colors for each button?
    Thank you!

    Here is the HTML code, and the CSS code for the menu bar follows: 
         ul.MenuBarHorizontal           
    ></style><style type="text/css"><!body {     background-color: #FFF;     font-family: Arial, Helvetica, sans-serif;}-->
        h1.  
         ul.MenuBarVertical          
    [about | MS_about.html]
    [fiction | MS_fiction.html]
    [dramatic work | MS_dramaticwork.html]
    [arts | MS_arts.html]
    [contact | MS_contact.html]
    [blog | MS_blog.html]
    <!-- end #header ><div id="mainContent"><p> </p><table width="950" border="0" cellspacing="10" cellpadding="12">        <tr>          <td width="106"><p> </p></td>          <td width="766"><p> </p>            <p>Miriam Seidel is a writer, critic and curator whose work is informed by her background in art, music and dance. </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p></td>        </tr>        <tr>          <td colspan="2" bgcolor="#CCCCCC"><p>c Miriam Seidel 2011 all rights reserved</p></td>        </tr>    </table><script type="text/javascript"><!var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", );var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", );var MenuBar3 = new Spry.Widget.MenuBar("MenuBar3", );//></script></body>     <! end #mainContent --></div></html> 
    CSS CODE:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ 
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding /ul.MenuBarHorizontal/ Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html /ul.MenuBarActive{     z-index: 1000;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     color: #FFF;     background-color: #FFCC99;     background-repeat: no-repeat;     left: auto;     top: auto;     right: auto;     bottom: auto;}/ Menu item containers, position children relative to this container and are a fixed width /ul.MenuBarHorizontal li/ Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) /ul.MenuBarHorizontal ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item /ul.MenuBarHorizontal ul.MenuBarSubmenuVisible/ Menu item containers are same fixed width as parent /ul.MenuBarHorizontal ul li/ Submenus should appear slightly overlapping to the right (95%) and up (-5%) /ul.MenuBarHorizontal ul ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible 
    /* Submenu containers have borders on all sides /ul.MenuBarHorizontal ul/ Menu items are a light gray block with padding and no text decoration /ul.MenuBarHorizontal a/ Menu items that have mouse over or focus have a blue background and white text /ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{     background-color: #6C9;     color: #999;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     font-style: normal;     line-height: normal;     font-weight: normal;     font-variant: normal;     text-decoration: none;     text-align: center;     vertical-align: middle;     height: 50px;     width: 115px;}/ Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{     background-color: #FFCC99;     color: #FFF;     font-family: Arial, Helvetica, sans-serif;     text-decoration: none;     font-size: medium;}
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarDown.gif);     background-repeat: no-repeat;     background-position: 95% 50%;     text-align: center;}/ Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarRight.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarDownHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarRightHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe /ul.MenuBarHorizontal iframe/ HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */@media screen, projection{     ul.MenuBarHorizontal li.MenuBarItemIE     {          display: inline;          f\loat: left;          background: #FFF; 
    Date: Mon, 20 Jun 2011 15:30:46 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: cell background colors are not showing in preview - help? - DW4 
    NEED to see the code.
    Otherwise it's like dialing a random phone number, and asking whoever answers, where you left your keys.
    >

  • Why my child or subpages not showing in preview or when published?

    Why are my child or subpages not showing in preview or when published?

    Hi,
    Are you unable to see the child pages in the Menu? If yes, please make sure you select "All pages" in the Menu type dropdown. By default, "Top level pages" is selected.
    Cheers!
    Aish

  • I have an apple iphone 4 that I want to download audio books from my library onto it.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    I have an apple iphone 4 that I want to download audio books from my library onto.  I cannot figure out how to do that.  The iphone does not show up on my mac laptop as a connected device.  Does this kind of download have to run through itunes?  Thanks

    Yes it is done through iTunes. The iPhone will never show up in Finder as a device. The following is general information on iTunes sync: http://support.apple.com/kb/HT1386 and the following is a previous discussion where the post by Andreas Junge helped others that had a problem syncing audiobooks: https://discussions.apple.com/message/20052732#20052732

  • How do i repair or recover data from a corrupt USB external hard drive that does not show up on my Mac desktop or disk utility

    How do i repair or recover data from a corrupt USB external hard drive that does not show up on my Mac desktop or disk utility?
    Last night i was using my external hard drive, for some reason the folder just closed and i couldn't find it on my desktop.
    After googling solutions, i found it in the disk utilities, i clicked on the 'repair' button many times, but it said the 'error...' message.
    So i ejected it to try again, now when i connect the USB external hard drive it doesn't show up on my desktop or disk utilities.
    I really just want to either repair or recover the data on it because it literally has everything (documents, work files, photos etc) on it,
    I downloaded an application to recover my files but it needs the USB to at least show up.recognise it which mine doesn't.
    I know i should've backed it up on another USB, this definitely teaches me for next time to back up all my files.
    Are the files lost forever or can i recover them by going to a shop or using a software?

    Thank you for responding.
    This might sound stupid since i'm not really knowledgeable with Macs,
    but since all my files were moved from my mac computer to the external hard drive,
    is it possible to recover those files through my Mac - like recovering deleted files? 

  • Contacts on my iPhone do not show up on my mac

    I can't seem to sync the contacts on my iPhone 5s to the contacts on my mac. I add more contacts on my iPhone than I do while sitting at my desk (mac). I have lots of contacts that will not show up on my mac - but some do. I don't know why, it seems to be hit or miss. I could add them manually, but I shouldn't have to do this. I am using iCloud, it is turned on all devices. Everything is under one account. Any ideas what might be happening?

    Mail server settings
    Refer to your email app's documentation for information about how to use these settings. iCloud Mail uses the IMAP and SMTP standards supported by most modern email apps. iCloud does not support POP.
    IMAP information for the incoming mail server
    Server name: imap.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS instead.
    Port: 993
    Username: The name part of your iCloud email address (for example, emilyparker, not [email protected])
    Password: Your iCloud password
    SMTP information for the outgoing mail server
    Server name: smtp.mail.me.com
    SSL Required: Yes
    If you receive errors when using SSL, try using TLS instead.
    Port: 587
    SMTP Authentication Required: Yes
    Username: Your full iCloud email address (for example, [email protected], not emilyparker)
    Password: Your iCloud password

  • I purchased 2 books for my iPad and they downloaded successfully.  They show up in iTunes when my iPad is connected to my Mac but do not show up on the Mac.  Is this a synch issue?  When I click the Synch box I am warned that downloads on my iPad will be

    i purchased 2 books for my iPad and they downloaded successfully.  They show up in iTunes when my iPad is connected to my Mac but do not show up on the Mac.  Is this a synch issue?  When I click the Synch box I am warned that downloads on my iPad will be erased.  Is that true?  My ultimate goad is to be able to read the books on my iPhone as well.  Thanks.

    You should be able to copy them to your computer's iTunes via File > Transfer Purchases and you can then sync them to the iPhone (or you could re-download them directly on the iPhone)

  • I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    Is it because the new itunes looks different.
    View > Show Sidebar
    Then it should work just the same as on your old computer.

  • Finder not showing .avi preview in columns

    Just a small problem, but annoying...
    With Finder set to column views, I used to get a small, playable preview of movies in last column.
    Suddenly, however, I don't get this preview with .avi files. MPG and MOV files give a preview, but not the AVI. I get the Play/Stop buttons and the timeline bar, but no preview image. Plus, it seems to take the finder ages to decide to not show the preview!
    Anyone got a solution to this?
    Thanks in advance!

    Check out the suggestions made in the section "More Like This",to the right side of your question.
    Best.

  • My samsung external HD does not show its folders on MAC. Does somebody can help me?

    My Samsung external hd does not show its folders on MAC. It runs sometimes at Windows systems. I hadl already tried to configure to show hidden folders, but it does not solve my problem.

    Thank you for responding.
    This might sound stupid since i'm not really knowledgeable with Macs,
    but since all my files were moved from my mac computer to the external hard drive,
    is it possible to recover those files through my Mac - like recovering deleted files? 

  • Exchange 2010 calendar not showing on outlook 11 Mac

    Exchange 2010 calendar not showing on Outlook 11 Mac on my iMac. It shows fine on iPhone and OWA. 

    Since this question is about a Microsoft product, you might have more luck getting suggestions if you ask in Microsoft's own forums.
    Regards.

  • IPod not showing up on my Mac or Itunes

    I got a 30 gb video iPod this past Christmas and have had no problems until the other day. Now when I plug it in it doesn't show up on my Mac or in iTunes. It does show up in the System Profiler. I've tried everything in this article multiple times: http://docs.info.apple.com/article.html?artnum=60950. The only success I've had is with restoring my iPod, but then of course I have to wait an hour for everything to get put back on there. Does anyone have a solution?
    eMac   Mac OS X (10.4.7)   iTunes 6.0.5

    It's only the iPod video and iPod nano that cannot be synced over Firewire. They can be both charged and synced with USB.
    If you're having trouble with the iPod being recognized after the latest update, try the following.
    Windows users
    Force the iPod into disk mode
    http://docs.info.apple.com/article.html?artnum=93651
    Connect the iPod to the computer
    Click Start > Run
    Type compmgmt.msc
    Click on "Disk Management"
    Let the computer go through its connection process
    Find the iPod's volume
    Right click on iPod and click on Format
    Set the format to FAT32
    Leave the rest of the settings on their defaults
    Do not perform a quickformat
    Start the format
    When it's done, your iPod should appear in iTunes, although it is recommended that you restore the iPod after formatting it. It's not recommended to do this on a 60GB iPod
    Mac users
    Open your Finder
    Go to Macintosh HD
    Go to Applications
    Go to Utilities
    Go to Disk Utility
    Select your iPod's volume in the left-hand column
    Click on the "erase" tab
    Volume Format: Mac OS Extended (Journaled)
    Uncheck "install Mac OS 9 driver)
    Click the erase button
    It's recommended that you restore the iPod with the iPod Updater after running disk utility on it.
    Hope this is helpful
    CG

  • Some PDFs not working in Preview. Mac created PDFS work but windows created PDFS dont

    Some PDFs not working in Preview. I installed adobe reader and then deleted it because the software was aweful and PDFs have been haveing issues ever since. I can open up PDFs created on my Mac in preview just fine...
    But when I try and open a PDF created on a windows computer it says:
    "Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. "
    I am not sure why where the PDF was created would make a difference but couldnt help but notice that was the difference between the PDF files that work and the ones that give that message. I can view the PDFs on a windows computer just fine and never had issues untill adobe, it seems to have messed up PDFs on my Mac and I am so frustrated with them. I have searched my computer for any remaining adobe files, deleted them and restarted my computer but I am still getting this message.

    Uninstall Adobe Reader's plug-in.
    Remove the following two files from  /Library/Internet Plug-Ins/:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Open Safari Preferences > Extensions. Do you see AdobePDFViewer? If yes. disable.
    Log out/in and test.
    Another option is to download and install this plugin. Schubert|it PDF Browser Plugin . PDF Browser Plugin 2 is free for not-for-profit activities if used at home or at educational institutions.
    http://www.schubert-it.com/pluginpdf/

  • Lighting effects not showing up in CS5

    This plug-in is not showing up on both CS5 and CS 5.1 running on a MAC OSX 10.6.7 Italian system. I have tried both from the Italian versions of PS and even from one new version in English of PS5.1 and it isn't to be found under the menu "rendering" or enywhere else. I see that it is in the plug.in folder and the folder of lighting effects is there as well, but it just doesn't show up. Any ideas about this bug? I've tried it on 3 different computers!

    As far as i know, the lighting effects filter only works in the 32 bit version of
    photoshop cs5/5.1 on a mac system.
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7959a.h tml
    There is also a photoshop macintosh forum (you posted in the photoshop elements forum)
    http://forums.adobe.com/community/photoshop/photoshop_macintosh
    Added: If you have the extended version of cs5, you might experiment using 3d lights
               for lighting effects, which works in the 64 bit version of cs5. Turn your layer into a
               3d postcard and use the 3d lights for various lighting effects.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Univers font - "fl" character combination not showing in text - issue?

    Hoping someone can help or provide some insight on this strange issue  ...
    I'm using UNIVERS font in my document - and each time I type a word with the "fl" combination it does not show the letters.  The space is open / there which indicates that the letters are "in there" .. but for some reason they don't show?  I can remove the "f" .. then the "l" shows up - and vice versa. 
    Seems odd to me? Any thoughts?  It doesn't do this my other programs ....
    Thank you,
    Chemol

    Go to Window / Characters panel. In the panel flyout menu, turn off Ligatures.
    The matching panel in styles dialogs is "Basic Character Formats".
    Dirk

Maybe you are looking for

  • Mail Sender

    Hi, I need to get messages in email using XI. The email server is Microsoft Exchange. How to configure the Mail Adapter sender to get the messages. What the XML structure I need to use? I did some tests, but I didn't see any message in sxmb_moni, rwb

  • ALV_GRID_CONTROL - columns

    hello, i've added new column in my it_table but i can't see it after compiling.. Please help! Maja

  • Acccount determination error while doing SES

    Hi, I am getting a error while doing SES i.e. 147 Account determination for entry ICOA FR1 not possible. Can anybody please guide me how to resolve this. Thanks in advance. Regards, Ashish

  • Unable to view queries from MS Access 2003

    Hi I installed Oracle SQL Developer 2.1.0.63 on my machine. I successfully connected to one of MS Access 2003 database. Also I changed the permissions of MS Access system tables in database. So I am now able to see all my tables under "Tables" in tha

  • How can I turn off computer screen, when mirroring to apple tv?

    How can I turn off computer screen, when mirroring to apple tv? Thanks.