Commandmenu items highlight is not working in IE8 and firefox

HI All
i developed a menu for my project .
in that menu i have some menuitems
when i mouseover on commandmenuitem the item is highlighted .
but this is not working in IE8 and firefox ..
it is sometimes working in iE7 and some times it is not working.
Can any one help me

PDF documents are hosted in an ActiveX or netscape plugin control which have their own printing functions.
Start>Adobe Reader>Edit>Preferences - to adjust what functionality the PDF document viewer addon displays (menus etc).
Tools>Manage Addons>Show all addons
make sure you have both the x86 and x64 versions of your PDF reader Active X control installed and enabled. I would recommend also that you update to the latest version of the vendors' (Adobe?) plugin.
Possibly you have disabled scripting of ActiveX controls in the IE security zone that your parent page maps to. Also there is an IE security zone feature that prevents navigation to a domain in a zone of lower integrity.
Tools>Internet Options>Security tab, click "Reset all zones to default".
when asking developer related questions it is helpful if you can include a link to your website.
Rob^_^

Similar Messages

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • CSS Menu drop down part not working for ie8 and flashing shut on iPhone 5 browser

    My CSS drop down menu will not show up in ie8 and flashes then shuts on iPhone 5 browsers (responsive design)..using code from a themeforest template. I am using CSS (HTML only) in the BC menu system. without further adieu here is the code.
    HTML (I removed the BC javascript)______________________
    <div id="navigation">
    <ul>
    <li><a href="/index.htm">Home</a></li>
    <li><a href="/about">About</a>
    <ul>
    <li><a href="/leadership">Leadership</a></li>
    <li><a href="/giving">Giving</a></li>
    <li><a href="/careers">Careers</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    </li>
    </ul>
    </div>
    CSS______________________
    #navigation {
    float: right;
    #navigation ul, #navigation li {
    list-style:none;
    padding:0;
    margin:0;
    display:inline;
    #navigation ul li{
    float:left; 
    position:relative;
    #navigation ul li a {
    font-family: Arial, sans-serif;
    display: inline-block;
    color: #888;
    padding: 40px 6px 10px 6px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    #navigation ul li a:hover{
    border-bottom: 3px solid #555;
    #navigation ul ul {
    opacity: 0;
    margin: -3px 0 0 5px;
    filter: alpha(opacity=0);
    position: absolute;
    top:-99999px;
    left: 0;
    background: #fff;
    border: 1px solid #dddddd;
    border-top: 3px solid #555;
    z-index: 999;
    #navigation ul ul li a:hover {
    border-bottom: 1px solid #ddd;
    #navigation ul ul li a {
    padding: 8px 0;
    display: block;
    width: 130px;
    margin: 0 16px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 12px;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid transparent;
    #navigation ul ul ul {
    position:absolute;
    top:-99999px;
    left:100%;
    opacity: 0;
    margin: -3px 0 0 0;
    z-index: 999;
    #navigation ul ul ul li a {
    border-bottom: 1px solid #dddddd !important;
    border-top: 1px solid transparent;
    #navigation ul ul li:last-child a, #navigation ul ul li:last-child a:hover {
    border-bottom: 1px solid transparent
    #navigation ul ul ul li:last-child a {
    border-bottom: 1px solid transparent !important
    #navigation ul li:hover>ul{
    opacity: 1;
    position:absolute;
    top:99%;
    left:0;
    #navigation ul ul li:hover>ul{
    position:absolute;
    top:0; left:100%;
    opacity: 1;
    z-index:497;
    background: #fff border: 0;
    #navigation ul li:hover > a {
    color: #444;
    #navigation ul ul li:hover > a {
    border-top: 1px solid transparent;
    color: #444;
    #current {
    font-weight: bold !important;
    color: #444 !important;
    border-bottom: 3px solid #555 !important;

    Well to show the menu it runs off opacity, Opacity is not cross browser and IE8 as you noticed will not work with it.
    This menu method of a CSS menu is also not mobile friendly.
    You will need the MS filters to work in older IE's
    http://css-tricks.com/snippets/css/cross-browser-opacity/

  • Printing an iframe with pdf using javascript is not working in IE8 and above

    I have a problem with printing and Iframe with PDF in IE 8 and above
    Following is my javascript:
    var urlValue="";//Path of the file to be printed
    var div = document.getElementById("printerDiv");
    div.innerHTML = '<iframe src="' + urlValue + '" id="frame" name="frame" style="width:100%;height:100%;"></iframe>';
    frame.focus();
    frame.print();
    This same thing is working fine in other browser but for IE is just not invoking the print dialog.
    Also I tried to get the frame.print(); on load of the frame but even that is not working exactly as that way it print the parent window in output.
    Few things I tried like:
    1) div.innerHTML = '<iframe src="' + urlValue + '"
    onload="this.contentWindow.print();"></iframe>';
    2) frame.contentWindow.focus();
    frame.contentWindow.print();
    3) window.document.getElementsByTagName('iframe')['frame'].onload = (function () {
    frame.focus();
    frame.print();
    I need to get the print of only the content which is in Iframe which I am binding in "printerDiv" by javascript.
    Any perfect/different solution from which I have tried then please post here?
    Thanks.

    PDF documents are hosted in an ActiveX or netscape plugin control which have their own printing functions.
    Start>Adobe Reader>Edit>Preferences - to adjust what functionality the PDF document viewer addon displays (menus etc).
    Tools>Manage Addons>Show all addons
    make sure you have both the x86 and x64 versions of your PDF reader Active X control installed and enabled. I would recommend also that you update to the latest version of the vendors' (Adobe?) plugin.
    Possibly you have disabled scripting of ActiveX controls in the IE security zone that your parent page maps to. Also there is an IE security zone feature that prevents navigation to a domain in a zone of lower integrity.
    Tools>Internet Options>Security tab, click "Reset all zones to default".
    when asking developer related questions it is helpful if you can include a link to your website.
    Rob^_^

  • New fingerprint software is not working with IE8 and FF3

    I have downloaded the latest version but it still does not resolve the issues with IE8 and FF3...
    Please, Please...
    Fix the main issue of the software unable to save website login details with Internet Explorer 8+ and Firefox 3+
    Thanks
    Stewart Grainger

    Hello
    I am pretty sure they know about this issue and software companies must not hear what the people say. For me it is logic that they watch what happen on the software market and try to adapt own products as soon as possible.
    This issue with IE8 is known and soon or later the updated version will be offered on download page but the question is: when?
    I cannot understand why they wait so long time. OK, to fix some issue and testing procedure can take a days but IE8 is not on the market from yesterday.
    Lets see how long it will be necessary for AuthenTec to fix this issue.

  • Internal pdf links not working in chrome and firefox

    I have some PDF files that I am adding links to additional PDF files that are located in the same folder on our webserver using Acrobat Pro XI. The links work fine in IE and the other PDF files open up and display well in the IE browser, but the links don't even show up in Chrome and will not open in Firefox. Further, the links in Safari, deliver an error message pop up saying the file could not be opened. If you click OK, the file does open. Also, in Acrobat > Tools > Add or Edit Link, I can change the properties to "Open File" and pick the "Open in New Window" option, but when I save the changes and come back, the option has automatically changed back to "Execute a Menu Item" and of course, the file I'm linking to does not open in a new Window.  These files were originally created in Word by another person and the person who converted them to PDF added fillable form fields throughout the document prior to converting to PDF. The links I am adding are being added using Acrobat Pro XI in the PDF file. Should we insert the above-mentioned links in the Word docs prior to converting to PDF to ensure the links work in all browsers, or are these browser issues common to all internal PDF links?
    Please help!
    Thanks,

    Make sure that you are using the Adobe PDF NPAPI viewer for Chrome and Firefox.  Both Google Chrome and Mozilla Firefox now have their own default PDF viewers.
    To change Chrome's settings use this blog:  Change PDF Viewer back to Adobe’s in Google Chrome « Caveat Lector
    To change Firefox's settings use this:  How to disable the built-in PDF viewer and use another viewer | Firefox Help

  • JSP compenent not working in mozilla and firefox

    Hi Experts,
    We have made a portal component with JSPs. And assigned it to anonymous page on our portal.
    Same is working fine with IE. However, with Mozilla and Firefox it gets distorted.
    Anyone knows whether mozilla supports JSP pages or not?
    Is there problem with Support pack?
    I am using EP 7.1 and SP 10 for the Mozilla Browser version (3.6.25 and 8.0.1).
    Your helps will be appriciated.
    Regards,
    Chitra

    Dear Chitra
    Please check Product Availability Matrix in service market place to verify the compatibility for accessing JSP in mozilla,
    I think it should work in 3.6.25 but not sure about 8.0.1, please check and verify in SMP
    Best Regards
    Arun Jaiswal

  • Tab navigation is not working on chrome and firefox

    Hi Every One,
    we are using jdev 11.1.1.6.
    Navigation across tabs on click of tab on key board is not working on firefox and chrome.
    Please help me with your inputs.
    Thanks in advance.
    Regards,
    Lavanya.

    Hi,
    can you be more explicit in explaining what you want to achieve and what is not working? You mean that the tab menus are not getting in focus using the tab key? Have you tried setting clientComponent=true on them?
    Frank

  • IWeb internal hyperlinks not working on Safari and Firefox

    I've just finished creating my website using iweb and hosting it through an FTP server. However all but one of the hyperlinks to internal pages don't work when viewing it on Safari or Firefox on either a PC or a MAC. They just appear as text and you can't hover over them. External hyperlinks appear to work as normal.
    In addition blog entries i've created aren't shown in their entirety on Internet Explorer. You can access the blog using the 'Archives' link on safari or firefox (the only internal link that does work) and i can see the complete entry but this is not the case of IE. It is just missing half of the text.
    What am i doing wrong? I really want to get these bugs fixed asap.

    Ah, good call. I will try that when I return home. Strange that safari and firefox would have an issue with this but not internet explorer. Seems so simple but still getting my head around working a website, thanks. Will comment if it doesn't work.
    But can anyone explain to me why the only blog entry "shooting on an iphone" would not appear in it's entirety on iternet explorer 9, when it appears on fine on safari, firefox and iternet explorer 7 & 8. It just stops at the heading 'lessons learned'

  • YouTube not working in Safari and Firefox (OSX 10.8)

    Just bought a new 13" MacBook Pro (4 days old) that came with 10.8 installed.  YouTube is not working and I keep getting this message in Firefox:
    "The page isn't redirecting properly:
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    This problem can sometimes be caused by disabling or refusing to accept cookies."
    Pretty much the same message in Safari.  Made sure all setting are correct (cookies etc) cleared history and all that stuff.  All other Flash based content plays without a problem, it's just YouTube.

    Mountain Lion is kind of ******.  At this moment all Flash content is not working in both Firefox and Safari.  Reinstalled Flash Player and still nothing.  It's playing no problem on my 5 year old MacBook with Snow Leopard.
    Is anyone else having these problems?

  • Facebook not working on Safari and Firefox

    Facebook not working at all either on Safari and/or Mozilla

    Do you get any sort of error message? I'm running both Safari and Firefox right now and not having any problems with Facebook...
    Clinton

  • QT is not working on Chroma and Firefox

    I have the latest version of Snow Leopard.
    When I try to see the new videos on the Apple site the browsers (except for safari) ask me get QT.
    When I click on" download" an apple site screen says
    QuickTime is built into Mac OS X.
    I updated and everything.
    Whats happening?
    Thanks in adavance, guys.
    Ben

    Hi,
    can you be more explicit in explaining what you want to achieve and what is not working? You mean that the tab menus are not getting in focus using the tab key? Have you tried setting clientComponent=true on them?
    Frank

  • Shortcuts not working on Safari and Firefox

    I just upgraded to Yosemite and have the following problem: no shortcuts for menu commands work anymore on Safari or Firefox. Simple test: start Safari and click cmd-Q to quit. Normally it should just quit. on my Macbook it doesn't. On Firefox, the menu bar flashes once, but that's about it.
    A few facts:
    Macbook Pro (Retina, 15-inch, Early 2013)
    Mac OS 10.10 installed and running
    Both, Safari and Firefox, are upgraded to the latest versions.
    No keyboard additions installed
    Swiss keyboard installed
    Nothing changed regarding keyboard preferences
    Anybody else experiencing the same or has any idea, how to fix it?
    TIA

    Problem solved. It all had to do with the primary language (NOT the keyboard) set to Swiss German, instead of just German. Seems a bug to me, but at least I have a workaround.

  • Command + R (Refresh) not working in Safari and Firefox need Help!

    I been having trouble with Command + R (Refresh) in Safari and Firefox for a while, I used to have a MBP 2006 intel 2.4 running Leopard when the problem started,but since I was planning to change to a new computer I didn't pay much attention.
    Recently I got a MBP w/ Retina and migrated the info from my old Mac to the new one, and it seem like the Command + R problem to refresh in Safari and Firefox has been brought with the migration.
    Another pointer is that I have my mac setup in Spanish although it was setup in English before. This does not seem to be the problem.
    Any Ideas on how can I solve this?
    Than in advance.

    Recently Safari started slowing and presenting the infamous spinning wheel of death whenever page has anything flash in it. Since many pages have ads coming in on flash many pages are effected. I almost thought that I had a virus on machine, being a PC guy for 20 plus year prior you can get, pun intended, flashbacks of deadly blue screen etc. Was happening on both my machines readily apparent on homepage msnbc and the like. I cleared caches etc etc infinitum thought I was back on Windows for a minute. I know from listening to various Mac tech shows on twit.tv that Apple apparently is not fond of flash programming as evidenced that flash not on Itouch or Ipad. But what, trying to kil it on regular machines?
    When I first came to apple a couple years ago I was using Google Chrome browser on MSFT macines and loved it but atthe time Chrom did not make Mac version. I used Safari and was happy enough UNTIL LATELY with it not to bother with other browsers. NO MORE, so went hunting and happily found that Chrome for Mac available. AMAZINGLY no problems so far msnbc loads, without exaggeration, TEN times faster than on safari, no spiining wheels of death EVERYTHING faster like someone gave my Mac's a B12 shot and restored them to how they used to be. Easily transferred all favorites over simple import.
    So far only down side I have found was that bank statement pdf downloads and the like that Safari had bottom screen popup to one click download not on Chrome and print to pdf doesn't seem to do it right so far but I amstill playing. So when I do bank statements I fire up Sarari and suffer the speed.
    There is no reason for this APPLE!!! If you are not going to have Safari be the best browser out there for a mac then you should dump it and recommend sometghign else. Please don;t be like MSFT and Internet Explorer junk!
    George in NY

  • Javascript not working in Safari and Firefox

    in stead of rendering the html generated by javascript, the html code itself is displayed in both Safari and Firefox.
    The strange thing is that this is only for one of my accounts. This account was transferred using the migration tool from my previous computer, where I also had this problem.
    A brand new generated user account does not show this problem.

    HI,
    In the affected account...
    From the Safari Menu Bar click Safari/Preferences then select the Security tab.
    Make sure: Enable plug-ins and Enable Java and Enable JavaScript are selected.
    Since you are running Snow Leopard, make sure Safari is running in 32-bit mode, not 64. Right or control click the Safari icon in the Applications folder, then click: Get Info In the Get Info window click the black disclosure triangle next to General so it faces down. Select 32 bit mode. Also, (in that same window) *make sure Safari is NOT running in Rosetta.*
    Relaunch Safari.
    Carolyn

Maybe you are looking for