IE displays spry submenus (incorrectly) at top of screen

I apologize for asking this question, as it looks like it has been asked before, but I've spent hours trying to get my spry navigation bar to display correctly in Internet Explorer with no luck.  My project for school is due tomorrow and this is the ONLY thing that is preventing me from completing my project.  I'm practically in tears!
I use a horizontal spry menu and the submenus don't drop down like they are supposed to.  They show up as separate navigation menus at the very top of the screen.
What additional information do I need to provide?  My mentor was unable to help me because he uses a Mac and he can't test it.
http://katiemieher.tripod.com/aychihuahuarescue
Details below.
Thanks!!
Correct:
Messed up by Internet Explorer:
CSS:
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
LAYOUT INFORMATION: describes box model, positioning, z-order
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
    padding: 0;
    list-style-type: none;
    cursor: default;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    font-variant: small-caps;
    text-align: center;
    line-height: normal;
    white-space: normal;
    margin-top: 0;
    margin-right: 100;
    margin-bottom: 0;
    margin-left: 0;
/* 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;
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 120px;
    float: left;
    white-space: nowrap;
/* 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
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: auto;
    position: absolute;
    left: -1000em;
    float: right;
/* 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
    left: auto;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
    float: none;
    width: auto;
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
/* 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
    left: auto;
    top: 0;
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #F0F0F0;
    text-decoration: none;
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #FFF;
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
/* 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
    color: #FFF;
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
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(../images/navbar_01.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
/* 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(../images/navbar_01.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
/* 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(../images/navbar_hover.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
/* 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(../images/navbar_hover.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
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
    position: absolute;
    z-index: 1010;
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
/* 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-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;

Hi Katie,
I understand. Here is a revised style sheet. I cannot verify it because I do not have version 1.4 on my computer. Please try it, make sure you keep a copy of your own style sheet in case. After installation please give me your feedback.
@charset "UTF-8";
ul.MenuBarHorizontal
    padding: 0;
        margin: 0;
    list-style-type: none;
    cursor: default;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    font-variant: small-caps;
    text-align: center;
ul.MenuBarActive
    z-index: 1000;
ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 120px;
    float: left;
ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 120px;
    position: absolute;
    left: -1000em;
    float: right;
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
ul.MenuBarHorizontal ul li
    width: 120px;
ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #F0F0F0;
    text-decoration: none;
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #FFF;
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #FFF;
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(../images/navbar_hover.gif);
    background-repeat: repeat-x;
    background-position: 0% 0%;
ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
        filter:alpha(opacity:0.1);
@media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background-image: url(../images/navbar_01.gif);
    background-repeat: repeat-x;
Ben

Similar Messages

  • Safari 3.1 not displaying Spry submenu correctly

    I am redesigning a site and have placed a Horizontal Spry
    menu at the top of the page. Some of the options in the menu have a
    sub menu with some of the options in one of the sub menus having
    their own sub menu. I have tested this in IE 7, Opera, FireFox and
    Safari 3.1 and it works perfectly in all except for Safari 3.1. In
    Safari 3.1 the sub menus fly out horizontally instead of dropping
    down vertically as it should. Has anyone else had this problem? If
    so does anyone know if it is a bug in Safari 3.1 and if so is there
    a fix or a hack? Any help would be appreciated.
    Unfortunately I am not at the moment able to put up a live
    page for you to see this in action but I will put a copy of my Spry
    CSS at the bottom of this post.
    I guess if it wasn’t for the fact that some of the
    options in one of the sub menus, having their own sub menu I could
    leave it as it usable by flying out horizontally, but when the
    second sub menu flies out it covers up the rest of the options in
    the first sub menu.
    Thanks.
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release
    1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning,
    z-order
    /* The outermost container of the Menu Bar, an auto width box
    with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* 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;
    /* Menu item containers, position children relative to this
    container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    white-space:nowrap
    /* 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
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    position: absolute;
    left: -1000em;
    float:none
    background-color:transparent;
    /* 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
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 8.2em;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* 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
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #234778;
    color: #FFFFFF;
    text-decoration: none;
    padding-top: 0.1em;
    padding-right: 0.75em;
    padding-bottom: 0.1em;
    padding-left: 0.75em;
    /* 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: #33C;
    color: #FFF;
    /* 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: #33C;
    color: #FFF;
    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%;
    /* 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
    position: absolute;
    z-index: 1010;
    /* 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;

    As extra info on this topic - I did an archive reinstall of 10.5.2 and Safari was working fine.
    Performed a software update which installed 6 packages and upgraded the OS to 10.5.5 and Safari is once again crapped in an identical manner to before.
    It would seem to be a problem with an OS update.
    Can anyone else verify and/or provide a fix

  • Spry Submenus falling all over themselves

    What property do I need to adjust to space out my spry submenus?
    I have submenus that need to have more then 5 or 6 words, they are both piling up on top of each other and expanding past the bounds of the background.
    Help! please
    Thanks.

    It's hard to say without seeing what you're trying to do.
    It's always best to provide a link to your page - upload *all* the files to a server and post a link.

  • How to display newly added bookmarks on top of the list in Unsorted Bookmarks? (not in Bookmark Manager window)

    I have hundreds of bookmarks.The Bookmarks Toolbar is filled.I made a shortcut of the "Unsorted Bookmarks" folder and placed it in on the Bookmarks Toolbar.Whenever I click the star to add a bookmark, it adds one to the real Unsorted Bookmarks, which add a copy of that bookmarks into the folder named Unsorted Bookmarks which is on the Bookmarks Toolbar.
    When I click on the Unsorted Bookmarks(both original and shortcut folder), it displays the oldest bookmarks on top, which honestly makes no sense to me because the user has to scroll a lot to get to the newest bookmarks, which are more likely to be used than the old ones that have been sitting there for a long time.Is there any way to sort the bookmarks by a reversed chronological order and display newly added ones on top of the list ?
    I am aware that you can do this in Bookmarks Manager window(called Library?) but it requires too many steps and it's time consuming and not easy to use in general.I'd rather click on the folder on Bookmarks Toolbar to open my bookmarks, but they show old ones on top.
    Thanks !
    hashtag - firstworldproblem

    Hmm, you might need to create a "smart folder" for this. You may have noticed some blue folders in your bookmarks such as "Most Visited" and "Recently Bookmarked". These show the results of a query run against your bookmarks or history (Places database) and you can create your own queries with a little elbow grease.
    So one possibility might be to create a custom "Recently Bookmarked" folder that extends beyond the current limit of 10. I gave the steps for creating a 20-item version of this folder in this post: https://support.mozilla.org/questions/934205#answer-358492
    That example searched ''all'' bookmarks and not specifically Unsorted Bookmarks. To create a new "smart folder" for Unsorted Bookmarks, you could try this:
    (1) Select and copy the following places search query:
    place:queryType=1&folder=UNFILED_BOOKMARKS&folder=UNFILED_BOOKMARKS&sort=12&excludeQueries=1
    ''(For definitions of those parameters and many more, see: [https://developer.mozilla.org/docs/Places_query_URIs])''
    (2) Expand the Bookmarks Menu (e.g., from the toolbar button or menu bar, or in the sidebar or Library dialog), right-click the first bookmark, and choose New Bookmark
    (3) In the Location field, paste the query (Ctrl+v or right-click > Paste)
    (4) In the Name, enter something like Unsorted Desc (for descending order) or the name of your choice. Then click Add.
    (5) Drag the new bookmark to the desired location on the Bookmarks Toolbar. If you are using the menu, click and drag and hover over Bookmarks Toolbar until it expands. Once it is on the toolbar, you can easily move it again to the desired location. During the first move, Firefox will recognize it as a query-type bookmark so that is why I have you create it on the menu and move it to the toolbar.

  • Spry submenus not working while Included with SSI

    I have customized and created my horizontal spry menu bar with the help of some tutorials on here, and I have pasted it onto a page without any html, head, or body tags. I have linked to the CSS files and javascript files in both the page being included and the page containing the include. But the Spry submenus wont work on the page with the include on it. But they work on the page being included.
    I tried only referencing the javascript file with the page containing the include, and vice versa to no avail. Again, everything else works except the expansion of the submenus.
    I am new to all of this, I only know what I have learned from doing tutorials and reading forums on this fabulous website. Has anyone encountered this problem or have a remedy? Thanks in advance.

    I'm confused. The submenus in the spry menu on the included page work when I don't reference the external style sheets or the javascript in the page containing the include. Based on the explanation given by David Powers on this thread about how to use SSI with Spry, I thought all pages had to include the link to the javscript and style sheets:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSEE4C0148-A6F4-4bf5-9DEF-CE06AB026214a .html
    Problem solved? Or if anyone has an actual explanation for this, I will leave this question unanswered.
    Sorry to be so quick to post...

  • [Bug Report] CR4E V2: Exported PDF displays Japanese characters incorrectly

    We now plan to transport a legacy application from VB to Java with Crystal Reports for Eclipse. It is required to export report as PDF file, but result PDFs display Japanese characters incorrectly for field with some mostly used Japanese fonts (MS Gothic & Mincho).
    Here is our sample Crystal Reports project:   [download related resources here|http://sites.google.com/site/cr4eexportpdf/example-of-cr4e-export-pdf]
    1. PDFExportSample.rpt located under ..\src contains fields with different Japanese fonts.
    2. Run SampleViewerFrameClient#main(..) to open a Java Report Viewer:
        a) At zoom rate 100%, everything is ok.
        b) Change zoom rate to 200% or 50%, some fields in Japanese font collapse.
        c) Export to PDF file,
             * Fonts "MS Gothic & Mincho": both ASCII & Japanese characters failed.
             * Fonts "Meiryo & HGKyokashotai": everything works well.
             * Open PDF properties, you will see all fonts are embedded with built-in encoding.
             * Interest to note that copy collapsed Japanese characters from Acrobat Reader, then
               paste them into a Notepad window, Notepad will show the correct Japanese characters anyway.
               It seems PDF export in CR4E mistaking to choose right typeface for Japanese characters
               from some TTF file.
    3. Open PDFExportSample.rpt in Crystal Report 2008 Designer (trial version), and export it as PDF.
        The result PDF displays both ASCII & Japanese characters without any problem.
    Test environment as below:
    * Windows XP Professional SP3 (Japanese) with MS Office which including extra fonts (i.e. HGKyokashotai)
    * Font version: MS Gothic, Mincho, Meiryo, all in Version 5.0
        You can download MS Meiryo from Microsoft's Site:
        http://www.microsoft.com/downloads/details.aspx?familyid=F7D758D2-46FF-4C55-92F2-69AE834AC928&displaylang=en)
    * Eclipse 3.5.2
    * Crystal Reports for Eclipse, V2, 12.2.207.r916
    Can this problem be fixed? If yes how long will it take to release a patch?
    We really looking forward to a solution before abandoning CR4E.
    Thanks for any reply.

    I have created a [simple PDF file|http://sites.google.com/site/cr4eexportpdf/inside-the-pdf/simple.pdf?attredirects=0&d=1] exported from CR4E. It is expected to display "漢字" (or in unicode as "\u6F22\u5B57"), but instead being rendered in different ones of "殱塸" (in unicode as "\u6BB1\u5878").
    Look inside into this simple PDF file (you can just open it with your favorite text editor), here is its page content:
    8 0 obj
    <</Filter [ /FlateDecode ] /Length 120>>
    stream ... endstream
    endobj
    Decode this stream, we get:
    /DeviceRGB cs
    /DeviceRGB CS
    q
    1 0 0 1 0 841.7 cm
    13 -13 569.2 -815.7  re W n
    BT
    1 0 0 1 25.75 -105.6 Tm     <-- text position
    0 Tr
    /ttf0 10 Tf                 <-- apply font
    0 0 0 sc
    ( !)Tj                      <-- show glyphs [20, 21], which index is to embedded TrueType font subset
    ET
    Q
    The only embeded font subset is defined as:
    9 0 obj /ttf0 endobj
    10 0 obj /AAAAAA+MSGothic endobj
    11 0 obj
    << /BaseFont /AAAAAA+MSGothic
    /FirstChar 32
    /FontDescriptor 13 0 R
    /LastChar 33
    /Subtype /TrueType
    /ToUnicode 18 0 R                            <-- point to a CMap object
    /Type /Font
    /Widths 17 0 R >>
    endobj
    12 0 obj [ 0 -140 1000 859 ] endobj
    13 0 obj
    << /Ascent 860
    /CapHeight 1001
    /Descent -141
    /Flags 4
    /FontBBox 12 0 R
    /FontFile2 14 0 R                            <-- point to an embedded TrueType font subset
    /FontName /AAAAAA+MSGothic
    /ItalicAngle 0
    /MissingWidth 1000
    /StemV 0
    /Type /FontDescriptor >>
    endobj
    The CMap object after decoded is:
    18 0 obj
    /CIDInit /ProcSet findresource begin 12 dict begin begincmap /CIDSystemInfo <<
    /Registry (AAAAAB+MSGothic) /Ordering (UCS) /Supplement 0 >> def
    /CMapName /AAAAAB+MSGothic def
    1 begincodespacerange <20> <21> endcodespacerange
    2 beginbfrange
    <20> <20> <6f22>                         <-- "u6F22"
    <21> <21> <5b57>                         <-- "u5B57"
    endbfrange
    endcmap CMapName currentdict /CMap defineresource pop end end
    endobj
    I can write out the embedded TrueType font subset (= "14 0 obj") to a file named "[embedded.ttc|http://sites.google.com/site/cr4eexportpdf/inside-the-pdf/embedded.ttf?attredirects=0&d=1]", which is really a tiny TrueType font file containing only the wrong typefaces for "漢" & "字". It seems everything OK except CR4E failed to choose right typefaces from the TrueType file (msgothic.ttc).
    Is it any help? I am looking forward to any solution.

  • Spry Submenus Not Visible on RHS only

    My spry submenus work totally fine except for the very far
    right hand side of the page where the submenus are cut off. I can
    see the very beginning of the submenu but the rest of it with the
    text is hidden once it goes past the edge of the page. Clicking on
    the small part which is visible works, but users still need to see
    the entire submenu. This is a problem only in Firefox (3.0.7) and
    Safari (3.1.2). IE7 works fine where the submenus on the RHS are
    clearly visible as I hover and they extend past the right hand edge
    of the page. Thanks for any input.

    I could see it on Safari.. it has a Beatles poster on the Home page and then others on the other pages...
    Some flucky things happen with these browsers.
    Peace,
    Glen
    iMac G3, G4, G5 Powerbook   Mac OS X (10.4.4)   iPods

  • Want date displayed with time on the top banner

    Want date displayed with time on the top banner
    On the top banner, I see signal, network, wifi, time, alarm, Bluetooth and battery. I want to see date and month and year too. How?

    There isn't a way to display the date in a banner..  BUT - The calendar icon does display the date and day. 
    HTH

  • My iPad suddenly started displaying "Searching" up in the top left corner and now the ipad reboots itself after about 2-5 minutes.

    My iPad suddenly started displaying "searching" up in the top left corner of the screen and the wifi symbol is next to it and I am connected to the wifi. Prior to last weekend it used to display Verizon and everything was fine. After about 2-5 minutes the iPad suddenly reboots itself. Can anyone assist with this. Thank you

    Have you tried rebooting the iPad?
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Is IE5.5 unable to display Spry Data?

    I've just finished adding a Spry Accordion to a page that's
    populated with Spry Data (XML data set from a MySQL table). The
    Accordion widget and data displays properly in Firefox, Opera, IE7
    and IE6 but fails in IE5.5. Likewise, Spry Data in Spry Tables
    doesn't appear in IE5.5.
    Is IE5.5 simply unable to display Spry Data?

    I'm developing my current project on a local development
    server, so I don't have a URL to show. However here's an example
    I've since found on the Adobe Labs site that exhibits the same
    behavior on my standalone installation of IE 5.5.
    http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample2.html
    I'm guessing that IE5.5 doesn't fully support XMLHttpRequest.
    So, I may just have to see if my clients think we can afford
    to abandon IE5.5 users or if I need to look for an alternative to
    the page I just developed. (Grrrr, I'm really tired of considering
    eight year old browsers.)
    Thanks for your response.

  • Email display name is incorrect

    our email display name has incorrect name however the email address is correct.  how do we edit the display name.

    JJTTShafer
    I am guessing that by 'our' reference you and a significant other are sharing an email address?
    We are really lacking info. We need MORE!
    Quoted from  Apple's "How to write a good question"
       To help other members answer your question, give as many details as you can.
    Include your product name and specs such as processor speed, memory, and storage capacity. Please do not include your Serial Number, IMEI, MEID, or other personal information.
    Provide the version numbers of your operating system and relevant applications, for example "iOS 6.0.3" or "iPhoto 9.1.2". <-Mail APP here!!
    Describe the problem, and include any details about what seems to cause it. Added - is this sudden or always been this way?
    List any troubleshooting steps you've already tried, or temporary fixes you've discovered.
    regards
    CCC

  • Remote Desktop Connection/RDC display is too small on my MacBook screen

    I use the free download from MS, RDC version 1.0.3 on my MacBook - to connect remotely to a PC network at my job from home. When I connect remotely the RDC display is very small on my MB screen. Is there anyway to enlarge the display or am I locked into the small size?

    Thanks, Garreth. When I connect remotely with RDC, I only see "RDC" and "Help" along the top of the screen. The 'Options' link is nowhere to be found; even under each of these two tabs. Is there more than one version of RDC for Mac? It would be great if I can fill my entire MB screen (given it's already 13") with the RDC connection display.

  • Timer shows incorrect hours on lock screen in iOS 7.0.4 (11B554a)

    Majority of time, I only use timer to count down for 30 min or 45 min so I did not notice the problem.
    However, when it came to 1 hour and 30 min, it displayed as 23:30:00 in the lock screen. Therefore I came back and checked again to make sure i did not slide to incorrect hour by mistake. I reset the time to 1 hour and 30 min but again it displayed as 23:30:00 in lock screen.
    This time, I tried to do 23 hours and 30 min but it displayed as 21:30:00. Then, I tried 0 hours 30 min and it was normal 0:30:00. Also, I tried 3 hours and 30 min but again it displayed as 1:30:00, which was what i wanted but i was thinking what it displayed might not be the actual value it was counting down.
    That's the question i wanted to leave to the expert to investigate.

    Who is your carrier? What country are you in? Where did you get the phone? Does your carrier support LTE on the iPhone? Is your account provisioned for LTE service?
    If you don't give us some basic information to work with, we can't help you.

  • Ghost image on top of screen in the menu bar...

    I've use an alternative black and white screensaver to try to get rid of that ghost image or look like "ink" going down on the upper right of my screen but it's still comming back and getting worst every week...., there is also a "grey" line all the way horizontaly also on top ... and even worst, i see my user name ghost image even when the screen is black ! i don,t think i'll be able to get rid of that and my question is , does applecare cover that kind of weird thing ? ... i didn't buy the applecare yet my computer is just 6 month old ... is that problem cover by the warranty
    Imac G5 2Ghz 20"   Mac OS X (10.4.4)   1 gig Ram

    Continued from above post:
    And, you can search for the term: "Image Persistence" to find more.
    Basically, the information from Apple says that to make a burned-in image disappear, you need to leave the computer off for a period of time equal to (or greater than) the time the image was displayed on the screen. But, that may not be possible when you consider that some images are on the screen the whole time the computer is off. So, it might mean turning a computer off for days in some cases.
    I've made them go away temporarily by turning off the computer for 24-hours. And, also by displaying a pure white image on the screen for 6 or 8 hours. But, the second method was less effective.
    The solution of turning it off was effective until the machine got hot again. Once it got really hot, the previous images re-appeared (further indicating that temperature impacts this problem).
    My personal lesson from all of this is to not buy another computer from Apple that has a built-in screen.
    My old LCD panel from Best Buy only cost me around $200 and it's still perfect after around 3 years.
    Too bad the problems with both of my iMac G5's prevented me from owning them beyond 6 months each. I've never gotten rid of any computer I've ever owned that fast before (or since).
    Between 2 iMac G5 computers (both different revisions), I've been through:
    3 LCD panels
    1 Logic-Board (would have been 2, got rid of the other as it was failing)
    1 Mouse
    1 Keyboard
    1 Power Supply
    1 Front Bezel
    Neither Logic board was replaced for fan noise. They were both actual failures.
    All 3 LCD panels were having burn-in issues
    the mouse button was sticking (the very day it arrived)
    The keyboard actually cracked on it's own
    The power supply smoked
    The front bezel was broken when it arrived.
    And, there's probably a few items I can't think of at the moment.
    The unfortunate thing, is that I have probably owned 100 computers or more in my time (used to be really heavy into them), and I don't think I ever had that many parts fail among the entire lot of them (except for the 2 iMac G5 systems).
    Before my iMac G5's, I had never left a computer with a service tech. But, thanks to my iMac G5's, I got to know the local service guy very, very, very well. He knows who I am immediately when I call.
    I hope to never have that sort of problem again. Here's hoping for a good Power Mac replacement (please Apple, no more systems with built-in monitors).

  • Can I display a Power Point presentation in full screen on an HP Pavilion g

    I have a working Power Point presentation with an imbedded video, whic means I can not use Power Point "Show". Can I display a Power Point presentation in full screen on an HP Pavilion g? If so, how do I do it?

    Hi,
    On any machine, please try:
      Click the "Options" tab on the PowerPoint toolbar,
      then select "Play Full Screen" from the "Movie Options" group.
      The "Options" tab is located directly underneath the "Movie Tools" button.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • OSX Mountain Lion update...please help

    Hi there, I have OSX 10.8.2 on my current MacBook Pro 13 inch. The problem I am having is I cannot update it because in the appstore Mountain Lion was purchased through a different account. I would like to purchase it from my account but it won't let

  • Payment Details - Profit Center wise (Monthly)

    Deal All, Could you pls let me know the report/way/path to find the list of all payments made from one Profit Center for a specified Month. Thank you Gopi

  • Library image in finder

    why this instead of my images in finder in picture file

  • Bulk Collect with FORALL not working - Not enough values error

    Hi, I am trying to copy data from one table to another which are having different number of columns. I am doing the following. But it threw not enough values error. Table A has more than 10 millions of records. So I am using bulk collect instead of u

  • Hiding private contact and other private information

    I have used a Palm PDA for years and depend on its ability to hide private contacts and private information while having those not marked private visible.  (To view the private information one must enter a password.) I am trying to migrate from using