Composition Menu Hyperlink Issue

Hello.
I have a website which is used offline, saved on a shared network drive at my place of work.
On this site I have a menu created using the composition widget.
Clicking on the trigger should bring up a target rectangle which displays the links to pages within that category.
However.....
When viewing in Internet Explorer the hyperlinks do work but are all squashed up together and are not displaying as I designed / formatted them (image below).
When viewing in Firefox the hyperlinks display as designed / formatted but the links are not clickable (image below).
Additionally, I don't know if this is connected, but in Firefox, when first loading up the site it seems to be trying to connect to something called Business Catalyst (as shown by the link being visible in the bottom left corner of the screen) and hangs whilst it does so.
I initially thought it may be a layer issue but have checked, and the text box is set to be at the front with the target rectangle set to be at the back.
Any help would be greatly appreciated as this is driving me mad!
Thanks - Glen

Thank you John. I deleted and recreated the text boxes - that fixed it
In one line you helped me fix what Adobe 'Support' didn't manage after a one hour chat! Their suggestion - upgrade my browser versions! Pathetic!
Many thanks! Glen

Similar Messages

  • Why can't I use the function of menu item 'issue delivery output'?

    why can't I use the function of menu item 'issue delivery output' in main screen of delivery note?
    And at the same time I can't use the button of printing in main screen of delivery note.
    the main screen of delivery note I mean above is in screen of maintaining shipping data instand of the first screen of VL02N.
    TKS in advance.

    Hi,
    Because delivery will be having header level output and item level output. So if u try to print through main screen then system will not know whether it is header related or item related. That is the reason it is only print output at header level or item level but not in main screen.
    I think u may have doubt like how billin will be issued output through Main screen. Because for billing both header and item level data are same..
    Regards
    Sankar

  • Menu Resolution Issues

    I've been working on this DVD Menu forever for our first feature film, DVD's have to go into produciton today so Ive been working on getting the master DVD out to our duplicator. Can someone help me with my menu resolution issues I am having?
    I've sent my menu from photoshop with interactive buttons, both the buttons and the text look great on my preview file, but after burning to dvd the menu looks low res and muddy. is there something I'm doing wrong?

    is there something I'm doing wrong?
    It would help if we knew the various settings. What are the project default transcode settings? That is what is used for menus. Motion menus? What is the pixel size and par of the menus.
    Button highlights by the DVD spec only allow 2 bit indexed color. Adding effects does not work.
    You might post a screenshot from photoshop with the layers twirled open.

  • Menu selection issues in Flash CS4 for Mac

    I'm having a few menu selection issues in Flash. It seems some fields are de-selecting automatically (and quickly). For instance:
    1) When I double-click a layer to change it's name, it highlights then immediately de-selects. I can only rename by right-clicking and bringing up the Properties dialog.
    2) Fields highlight briefly then immediately de-select in the Properties menu when using the Tab button to advance or cycle thru fields. I have to click on each field individually to enter dimensions/characters.
    Possibly related...
    On occasion, I'm having an issue in Photoshop where the tools are off by 30 pixels or so. Examples:
    - Paint brush affects an area approximately 30px to the right and down from the brush head.
    - Selection tool selects an area approximately 30px to the right and down from the arrow head.
    This only happens on occasion and can be fixed by restarting Photoshop. I have not had any luck fixing the problems experienced within Flash.
    I'm experiencing this on two different machines that have CS4 installed. My only guess is a conflict with a Logitech driver OR a Wacom driver, but I have uninstalled the software and unplugged the Logitech mouse and Wacom tablet to no avail.
    Long time Flash/Photoshop user.... never had a problem like this.
    Anyone else have these issues or know a fix?
    Mac OS X 10.5.7
    Macbook Pro & iMac
    Logitech Control Center 2.7.0
    Wacom Driver 6.1.1-2(RC) for Mac OS X v. 10.4 & 10.5

    Hi there,
    This is a known issue, however we have not been able to reproduce it internally. The way to fix it (assuming it's the same problem) is to change your workspace (such as resetting to a default shipping layout, and then modifying from there), as it seems as though something about the workspace is causing the problem. It could be very specific to where its layed out on your monitor(s), some exact pixel size of a panel and/or grouping - and so on. However, we haven't been able to reproduce this internally yet - only reproed and fixed similar problems - so I cannot say for sure, however changing the workspace has fixed it for the other users I've talked to seeing this one.
    If you are able to share the following about one or both of your computers and send it to jdh (at) adobe, greatly appreciated:
    * workspace XML file from the Configuration directory (before changing the workspace!)
    * description monitor layout (ie: primary on left, secondary on right... or "one" )
    * monitor resolution(s)
    * screenshot(s) of your layout exhibiting the problem
    Thanks!

  • Spry Menu Bar issue, NEED HELP...???

    Here is the coding for a menu bar that i created with CS3, for some reason i am having an issue when i open the web page in IE, on firefox and safari it looks fine, the menu drops down to sub menu's fine, but for some reason when i open it in IE, the submenu's show on the very top of the page rather than right below the menu itself, please check my coding and see if there is an issue???
    i ran compatability and there are no issues shown.
    @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: 10.4em;
        float: left;
        background-image: url(tab2.png);
    /* 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: 8.2em;
        position: absolute;
        left: -1000em;
        text-decoration: underline;
    /* 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;
        background-image: url(../tab1.png);
    /* 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
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: default;
        padding: 0.5em 0.75em;
        color: #FFFFFF;
        text-decoration: none;
        border-left-color: #0063bd;
        border-right-color: #0063bd;
        border-right-width: 3px;
        border-left-width: thin;
        font-family: Calibri;
        font-weight: bold;
        font-size: 19px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        color: #000000;
    /* 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: #000000;
    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-block;
        f\loat: left;
        position: relative;

    Hey gramps, thanks for the info, i have updated my spry framework to 1.6.1 but the problem is still the same, i recreated my menu with the new 1.6 and it still doing the same thing, the submenu's are like vertically reversed... ugh need help.
    here the new code
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* 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: 10.4em;
        float: left;
    /* 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: 8.2em;
        position: absolute;
        left: -1000em;
    /* 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;
        background-image: url(../tab1.png);
        line-height: 18px;
    /* 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;
        padding: 0.5em 0.75em;
        color: #FFFFFF;
        text-decoration: none;
        font-size: 19px;
        font-family: Calibri;
        font-weight: bolder;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        color: #000000;
    /* 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: #000000;
    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-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-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-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-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;

  • Spry menu positioning issue in IE?

    Hi,
    I am quite new to dreamweaver and using spry menus but I have decided to create a horizontal spry bar in my website.
    The menu works fine in safari but the menus and submenu are out of position when using IE and shift to the right.
    Please could you let me know how I can fix this problem and if you can see any other issues in the code i need to sort out?
    Here is the code:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* 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 auto;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 846px;
    font-family: Verdana, Geneva, sans-serif;
    height: 28px;
    /* 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: center;
    cursor: pointer;
    width: 141px;
    float: left;
    /* 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% 0 0 0%;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 141px;
    position: absolute;
    left: -1000em;
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
    /* 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;
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    border-left-color: #000;
    border-top-width: 0pt;
    border-right-width: 0pt;
    border-bottom-width: 0pt;
    border-left-width: 0pt;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 141px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: 2% 0 0 100%;
    /* 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
    width: 141px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    color: #FFF;
    /* 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: #FFF;
    text-decoration: none;
    border: 1px solid #000;
    background-image: url(BtnBackground.gif);
    font-size: 10px;
    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(BtnBackgroundOver.gif);
    background-repeat: repeat-x;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10px;
    /* 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(BtnBackgroundOver.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(BtnBackground.gif);
    background-repeat: repeat-x;
    color: #FFF;
    font-size: 10px;
    /* 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(BtnBackground.gif);
    background-repeat: repeat-x;
    /* 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(BtnBackgroundOver.gif);
    background-repeat: repeat-x;
    /* 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(BtnBackgroundOver.gif);
    background-repeat: repeat-x;
    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;
    filter:alpha(opacity:0.1);
    /* 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;
    Also, i've noticed that when the menus go over the top of flash objects the text is not so clear or bright!!! If anyone knows a way to sort this that would be great too!

    Add/modify the following
    ul.MenuBarHorizontal li {
        text-align: left;
    ul.MenuBarHorizontal a {
        text-align: center;
    Gramps

  • Hyperlink issue in Smartform PDF

    Hi  All,
               I am facing below issue with Smartform after it converted to PDF. The PDF file has below link
    (http://www.vocakiri.co.uk/_assets/media/StandardTC3_(including_REG_31_Requirements).pdf) in footer window.
    But when i am selecting the hyperlink it is getting truncated as "http://www.vocakiri.co.uk/_assets/media/StandardTC3_" .it opens window with truncated
    web address which leads to error.
    could you please let me know what is the problem or is there any note need to be applied.
    Thanks and Regards,
    Prasanna B

    Hi Prasanna B,
    See thread http://scn.sap.com/thread/1819587.
    You can try using the callback method described in the following Notes:
    622718 - SF Web Forms: Callback for the URL format
    707931 - Web Forms: Incorrect URL address with the HTML output
    You can get a different title of the link by using a kind of user exit for the URL processing, which is described in Note 622718.
    You must create your own function module with the following interface:
    *"  CHANGING
    *"     REFERENCE(DATA) TYPE  TTXCTOKEN
    Data: i_data type STXCTOKEN,
    (see note 622718; TTXCTOKEN is an internal table of type STXCTOKEN)
    Now when you call the function module of the Smart Form, you should fill the parameter OUTPUT_OPTIONS-URLCALL with the name of the new function module. As a result your function module is called, when the URL is processed by the Smart Forms composer.
    This method allows you to use a shorter alias for a longer URL link.
    Regards,
    Aidan

  • Image hyperlink issues in PDF creation using Acrobat 9.0

    Hi All,
    I am using Acrobat 9.0 Professional for creating a PDF of a web site hosted on my local IIS server. All the web pages contain:
               1. A single large image and some description text.
               2. Few hyperlinks mapped to the various areas/locations of the image. The hyperlink is visible when user moves the mouse cursor to that specific area/location on the image.
    These hyperlinks work correctly when the web page is viewed in any browser but when the web site is converted to PDF, we observed the following problems with the image hyperlinks:
         1. The hyperlink area (rectangular) on the image is shifted from its original position.
         2. The hyperlink area (rectangular) on the image grows bigger than its original size.
    (The original position and size here means the position and size of the hyperlink as on the web page respectively).
    Surprisingly these issues do not occur if a PDF is generated of the same web site using Acrobat 8.1.0 Professional.
    I searched the Adobe website for any service pack/updates that could resolve this issue in Acrobat 9.0 Professional but could not find any.
    I will be really thankful for any help provided.
    Regards,
    Santosh.

    In my case it's with .puz files, which are crossword puzzle files used by sites like the New York Times and read by the application AcrossLite. I went into preferences and tried to change the action for the file type from "Save File" to AcrossLite but it would not take. Set it instead to "Always Ask" and then in the dialogue box selected AcrossLite and "always do this" and it gave an unknown error.
    This is FF 4 on a Mac.

  • Menu Bar issues on Macbook Pro

    I came across this problem with my mac where after logging in I noticed that the menu bar, specifically the battery and wifi icon takes atleast 5-10 mins to appear and when I hover the cursor anywhere on the right side of the menu bar it shows the spinning rainbow. Also the volume button seems to be greyed out as well and usually I have to plug in ear phones and it will go away but only temporarily. This never happened to my mac until today and for some reason I think it has to do with the installation of Adobe CS6 Master Collection. (yes, it was torrented. no, I wont do it again.) I did some slight research and on some website it said that there could be some applications recently installed that could have caused this to happen. If anyone has a solution I would very much appreciate it.

    Having the same issue. Macbook Pro 2011, latest Mavericks update ....
    Apple menu disappears and reappears when Google Chrome is open/closed. Behaving the same with random programs. Do you have any ideas?? Software is up to date, THANKS!!!

  • IPod Touch with Composite AV Cable: Issues

    I purchased the new $50 composite AV cable when it was released a few months back. I've been using it frequently with no real issues (whenever I play a video, my iPod recognizes that it is connected to a TV and prompts me to choose whether or not to display the video on the TV). However, as of this week it no longer prompts me, and I cannot find a way to manually select "TV Out" without first being automatically prompted by my iPod. I recently installed 1.1.3 with the January upgrade. The only other thing I can think of that I've done differently recently is that I used the composite AV cable to charge an older iPod model, which I had never tried before, but I doubt that would have any affect on the cable itself. Anyone else having this problem? Why is there not a manual "TV Out" option for the iPod Touch to avoid this issue altogether?

    I havent had any issues with my Apple AV composite cable. Ive been using it for the last month or so and has also worked since the 1.1.3 firmware and software upgrade. I suggest you call apple tech support you have a 1 year warrenty on those cables.

  • Aspect ratio and menu resolution issues

    I've just come across an issue with resolution and picture aspect.  I've maneged to kick all of my STBs except 1 into this **bleep**ty behavior.  It started when I just hooked up our main living room set to the box after moving.  No matter what I did the picture was being displayed as a 16:9 letterboxed 4:3.  Meaning, the 16:9 HD picture is being displayed in a 4:3 box with black bars top and bottom, and then that 4:3 has grey bars on both sides. I've tried all varieties of output resolution on the STB and picture size on the TV to no avail.  Finally after swapping through settings for 30min it came back to displaying 16:9 HD as full screen.  But now the remaining issue is that all menu screens are sort of fuzzy resolution.  I went to check one of my other sets to make sure this wasn't normal and the menu screens are very sharp.  Unfortunately I checked the resolution output and played with it just to see what happens and kicked this STB into the same fuzzy menu behavior and an odd new display - it is stretching AND letterboxing 16:9. So the aspect of the picture is something like 22:9 with black bars top and bottom.  No matter what I do I can't fix it.  The one remaining STB that I haven't dared to tinker with is the media server because the menu is crystal clear anddf the picture display is correct.
    I haven't called tech support yet but did use the troubleshooting tools to reset the box to no avail.

    Go to Menu => Settings=> Audio & Video=> Video Settings
    Video Format should be 1080i 16:9
    SD Override set to stretch
    TV Type 16:9
    Graphics Settings set to HD
    Video Sharpness set to default or higher depending on your preference
    Once that is complete you might still need to adjust your TVs settings.

  • Hyperlink issue in PDF

    Hi Folks,
    I am crashing my head under this issue but no luck.
    I had some hyperlinks in my indesign CS5 document which have a shared folder destination for hyperlinks in page items. Now if I tried to jump to destination from Indesign document it directs me at correct folder so far so good but as I export this document to PDF and in PDF if I try to click on the link it directs me at browser and obviously alerted that URL not found.
    Is there is some work around to fix this discrepancy or this a bug of Indesign CS5.
    Thanks
    Mac

    Thanks for quick reply,
    I've patched my Indesign to latest patch. Hyperlinks destination is in folder itself not prompting to open any file (e.g. \\\\tewaveserver\\source).
    while opening in Acrobat, It addes the path PDF file is saved (e.g. /C/productpdf\\tewaveserver\source) where "/C/productpdf" is the path where PDF is saved.
    I saw one relative thread to forum and unchecked the option in PDF preferences->internet->Display PDF in browser. though it stoped now browsing link in internet but still not opening respective folder also.
    Mac

  • Spry menu hover issue

    I have a vertical spry menu bar and it opens up to the right
    over the text on the page.
    In Firefox it displays correctly, but in iExplorer, when the
    cursor hovers over the drop down menu, it only stays highlighted
    and open when the curser is directly over the text in the spry box,
    or if there is no text on the page. But when the cursor is over
    empty space in the box and there is text on the page behind it, the
    box closes.
    How do I fix this?

    Hello Beth,
    The piece of CSS you see there is actually a fix for Internet Explorer 6. It has bug where form elements such as selects will go through divs and other elements, in this case the <ul>'s of the menu bar. To resolve this issue, a iframe is generated and carefully placed under the <ul> elements. This way the form elements will no longer pass through the <ul>'s
    If you menu is no where near a form element you could remove the iframe generation code form the javascript and savely remove that related stylesheet rule. But i do not recommend such practices. But that would be the only fix for the validation issue. Well.. Thats not true actually you could apply those styles through JavaScript... So that might actually be another option.
    So it all depends on how hefty you weight validations. Validations are guid lines. Because a page doesn't "validate" it doesn't necessary mean the page is doomed and will crash all browser that comes on its path . But clients are usally verry narrow minded. So good luck with that .
    So without further ado, the fixes:
    - do nothing as it doesn't harm your page, it merly fixes internet explorer.
    - removal of the iframe from JS:
    line 289, remove:
    if(Spry.is.ie && Spry.is.version < 7)
         this.createIframeLayer(menu);
    line 317, remove:
    if(Spry.is.ie && Spry.is.version < 7)
         this.removeIframeLayer(menu);
    - move the css to JavaScript:
    line 243 find:
    layer.style.left = menu.offsetLeft + 'px';
    layer.style.top = menu.offsetTop + 'px';
    layer.style.width = menu.offsetWidth + 'px';
    layer.style.height = menu.offsetHeight + 'px';
    and add under:
    layer.style.position = 'absolute';
    layer.style.zIndex = 20010;
    layer.style.style.filter = "alpha(opacity=0.1)";
    Happy hacking

  • Menu Bar issues in IE

    Hello and thank you in advance for your help.
    I am building a website for a small business and following various tutorials etc to help me along the way.   I have created a menu bar within the banner with hover formatting etc. but in IE it fails to show correctly and just shows as a white bar.  When you hover over it the links show with the correct formatting but disappear again as soon as you move the mouse pointer away.   In Firefox it looks correct and works as it should.
    One thing I have noted is, when I originally selected preview in IE from within dreamweaver, it worked correctly but the browser was automatically restricting scripts from being run.  When I allowed scripts to run it went back to the white bar issue.   Can anyone advise what is causing this to occur?  The website is www.kelstarproperty.co.uk
    Many thanks

    Hi Simon,
    please have a look into your "Banner_menu.css". There you can change/play with the colors of your menu bar. I tried this here (your code is "coded out" with /* ... */):
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    color: #000;
    /* color: #FFF;*/
    text-decoration: none;
    The result looks like this:
    Good luck!
    Hans-Günter

  • When I compose a message, I don't get the composition menu - attachemnt, send, etc. I can only attach something if I use one of the codewords like "attach".

    I have had to install Thunderbird on new PCs and I no longer get the menu bars on the composition page. I cannot attach a file unless I type "attach" or another keyword in the body of the message. Then I get a reminder asking if I forgot to attach something and can click on that. How do I get my menu bars back? Clicking in the upper right corner doesn't give me the right options.

    In the main menu bar of the compose window:
    View - Toolbars
    Check 'Composition Toolbar'.
    In case the menu bar is hidden as well press Alt or F10 to bring it back.

Maybe you are looking for

  • How do I stop texts from coming to the new Messages app on my macbook?

    I was on my computer and wanted to try out the new Messages app so I opened it up, and wrote a message to my g/f and one to my friend. Now everytime they text me I get notifications on my macbook pro. I have clicked the X next to their name on the Me

  • HT1848 my ipod touch 4th generation will not power on, and itunes doesn't recognizes it when it is connected through the usp

    I can not get my Ipod touch to power on, and it isn't recognized by itunes when it is plugged in. does anyone know what the problem could be and or have had the same problem and fixed it??? I appreciate any and all help with this problem, and definat

  • Link table/References table

    Hi folks, looking for some advice, I have the same product supplied by many suppliers the only difference is the price. I have a Products table and a Suppliers table was thinking of adding a link table. This will allow the products to have many suppl

  • Premiere Pro 1.5 crashing on startup

    Windows XP Corporate Edition SP2 2.83 Ghz Pentium core 2 quad 896 mb Gigabyte Geforce 260 Canopus DV-Raptor editing card So, I work as a contract wedding video editor from home, and the company I get contracts from requires me to use pro 1.5.1 with a

  • Quality issue when placing web screenshots into InDesign

    Please, please help! I am using InDesign CS3. I frequently capture screenshots from web pages to place in an InDesign document as an image. Without exception, the resulting image quality is lousy. I have tried capturing screenshots with Screenhunter