Invisible or transparent drop-menus in firefox 38.0 beta

Hello, Firefox community
i'm facing a problem with the last update of firefox browser related to the drop-menus
all the menus became invisible, i can barely see the borders only but no content.
i'm using firefox 38.0 on Vista SP2
below are some screenshots depicting my problem ..
1 - Right click context menu
2 - Toolbar menus
3 - Address bar menu
How to fix this? any suggestions ..

hello Ultim4t3, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]] or in case there is no new version available at the moment or this doesn't solve the issue, disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).

Similar Messages

  • Drop menus with mask and invisible movie clip

    please see this navigation interface:
    http://www.hearightnow/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • Drop menus with mask and invisible clip

    please see this navigation interface:
    http://www.hearightnow.com/yogamater/
    when the mouse is outside of the drop menus, the drop menus "hide" behind the outside of a mask, when the mouse enters the drop menus, they move up. An invisible movie clip the traces the frame of the photos is in place to insert ROLL_OVER and ROLL_OUT code to "block" the event listener that functions the "yoga" drop menu.
    This is all done in one frame, the scripts do all the animation of the drop menus.
    the current code for this menu allows the mouse to travel from the photos to the "yoga" drop menu without triggering the menu to go up, however if the mouse travels from the "yoga" drop menu to the photos, the drop menu locks up until the mouse leaves the photos.
    any ideas how this can be fixed? also, how do I apply the script on the invisible clip to all the drop menus?
    definitely a newbie to AS3 so all help is greatly appreciated!!
    here is the main script:
    stop();
    addEventListener(Event.ENTER_FRAME,upyoga);
    addEventListener(Event.ENTER_FRAME,upteach);
    addEventListener(Event.ENTER_FRAME,upsched);
    addEventListener(Event.ENTER_FRAME,uppriv);
    addEventListener(Event.ENTER_FRAME,upcont);
    var speed:Number=.222;
    function upyoga(e:Event) {
    if ((yoga_menu.mouseY<yoga_menu.height&&yoga_menu.mouseY>0) &&
    (yoga_menu.mouseX<80&&yoga_menu.mouseX>0)) {
    yoga_menu.y-=(-58+yoga_menu.y)*speed;
    } else {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function upteach(e:Event) {
    if ((teach_menu.mouseY<teach_menu.height&&teach_menu.mouseY>0) &&
    (teach_menu.mouseX<80&&teach_menu.mouseX>0)) {
    teach_menu.y-=(-65+teach_menu.y)*speed;
    } else {
    teach_menu.y-=(-118+teach_menu.y)*speed;
    function upsched(e:Event) {
    if ((sched_menu.mouseY<sched_menu.height&&sched_menu.mouseY>0) &&
    (sched_menu.mouseX<80&&sched_menu.mouseX>0)) {
    sched_menu.y-=(-42+sched_menu.y)*speed;
    } else {
    sched_menu.y-=(-96+sched_menu.y)*speed;
    function uppriv(e:Event) {
    if ((priv_menu.mouseY<priv_menu.height&&priv_menu.mouseY>0) &&
    (priv_menu.mouseX<80&&priv_menu.mouseX>0)) {
    priv_menu.y-=(-28+priv_menu.y)*speed;
    } else {
    priv_menu.y-=(-74+priv_menu.y)*speed;
    function upcont(e:Event) {
    if ((cont_menu.mouseY<cont_menu.height&&cont_menu.mouseY>0) &&
    (cont_menu.mouseX<80&&cont_menu.mouseX>0)) {
    cont_menu.y-=(-40+cont_menu.y)*speed;
    } else {
    cont_menu.y-=(-88+cont_menu.y)*speed;
    and here is the script on the invisible clip:
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, invisClipOver);
    invisiClip.addEventListener(MouseEvent.ROLL_OVER, menuBack);
    invisiClip.addEventListener(MouseEvent.ROLL_OUT, invisClipOut);
    function invisClipOver(event:MouseEvent):void {
    removeEventListener(Event.ENTER_FRAME,upyoga)
    function menuBack(e:Event) {
    yoga_menu.y-=(-134+yoga_menu.y)*speed;
    function invisClipOut(event:MouseEvent):void {
    addEventListener(Event.ENTER_FRAME,upyoga)

    I was having trouble attaching a zip or fla to this post so they can be retrieved at
    http://www.hearightnow.com/yogamater/menu_45b.zip
    or
    http://www.hearightnow.com/yogamater/menu_45b.fla
    the "menu" layer contains the mask that the drop menus hide behind
    the "invis" layer contains the invisible movie clip that has the code that removes and adds the event listeners that move the "yoga" drop menu
    the photos seen at http://www.hearightnow.com/yogamater/ are added with HTML DIV tags.
    thanks!

  • Spry Menu Bars not dropping down in Firefox/IE

    I recently published a website and found that my menu bars dont drop down in Firefox or IE, except the first cell on the first menu bar.
    Here is the address: http://www.tvnewsjunkie.com/
    Thanks,
    Grant

    There are too much sloppy coding to go through them all.
    To help you on your way
    line 4980: missing closing DIV tag
    line 3693: missing closing LI tag
    line 142: empty LI element.
    If you delete line 142, the first three menus will work, but then there is something that is stopping the rest to work.
    Gramps

  • Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps.

    Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps. This problem started ever since I upgraded to version 5.

    I have downloaded and used the iPod Reset Utility, alot that did. My current state is iTunes on my XP Home with SP3 sees the iPod. When I drag a song to the iPod, the Sync message appears for about 5 minutes, then the Apple symbol appears. But no song has been transferred to the iPod.
    I tried to tap into the XP iTunes database from my iBook, but although it acted like it would add the XP library to the iBook library, it did not. I've got 19 Gs of songs on the XP. If I have to load each song from its original CD to get it on my iBook I'm going to start looking for some other app or device so that I can listen to my music.
    It is a shame, in the old days, Apple techs use to look at what was going on, now it appears they don't, so they never know they have problems until Apple's profits fall.

  • Is there a way to edit the context menus in Firefox?

    Is there any way to edit the context menus in Firefox outside of installing an extension, or does anyone know of an extension that does so that is updated regularly? There is one called Menu Editor, but it doesn't look like it's being updated any time soon so I wouldn't imagine it will be compatible with 4.0 any time soon. I just want to edit the order of something to convince me to switch back to Firefox.
    == This happened ==
    Every time Firefox opened

    No, the submit button text is not customizable.

  • Edge of the button invisible or transparent

    which the property of the button that should change so that I can remove the edge or leave it invisible or transparent.

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" xmlns:local="*">
        <mx:Style>
            .myButton
                upSkin:ClassReference('EnhancedButtonSkin');
                overSkin:ClassReference('EnhancedButtonSkin');
                downSkin:ClassReference('EnhancedButtonSkin');
                disabledSkin:ClassReference('EnhancedButtonSkin');
                selectedUpSkin:ClassReference('EnhancedButtonSkin');
                selectedOverSkin:ClassReference('EnhancedButtonSkin');
                selectedDownSkin:ClassReference('EnhancedButtonSkin');
                selectedDisabledSkin:ClassReference('EnhancedButtonSkin');
                borderAlpha: 0;
        </mx:Style>
        <mx:Button/>
        <mx:Button styleName="myButton"/>
    </mx:Application>

  • I don't have any drop menus on the tools?

    I do not any drop menus on my tools for photoshop cs6?

    1)Hold down mouse button for 2 seconds
    2)right click on icon
    3)use shift+keyboard shortcut
    Any of these three should get you the tool you need. If not try resetting your keyboard short cuts.
    If these don't help, then let us know and we can think of something else.
    Edit: I am assuming you meant the toolbar tools.

  • Trouble with Firefox 3.1 Beta 1

    My tech support people have insisted on my upgrading to
    Firefox 3.1 Beta 1. I am having considerable difficulty with simple
    functions, such as <ctrl> X (to delete rows in a table) and
    <ctrl> V to drop new text copied from an existing document. I
    suspect the difficulty is with Firefox, but they deny it.
    If necessary, I will switch over to Internet Explorer for use
    with Acrobat.com, but I would like to know when to expect Adobe to
    catch up with Firefox's newest developments.
    S. Malkah Cohen

    Hi SMalkah,
    I am not sure as to why it wouldn't work with the new
    version, however we won't be able to garuntee we work with any beta
    version of software.
    Were you able to use Acrobat.com just fine with Firefox
    3.0.3?
    If so, could you go back to the non-beta version of Firefox?
    Using Internet Explorer is an option, you also have the
    option of using the AIR application for some non-browser function
    within Acrobat.com
    Visit this link for more info:
    Adobe
    AIR for Acrobat.com
    You can also look at
    The Acrobat.com Blog for
    entries from the product team that contain interesting tips, tools,
    and update information for acrobat.com.
    Cheers,
    Pete

  • After downloading Mozilla Firefox 4.0 Beta to my desktop I restarted the computer, but I do not receive any prompts to create an account with a Secret Password. How do I set up the account if the prompt never show up?

    Several months ago I installed the Firefox Home app on my iPhone to sync the bookmarks that I had on my Windows XP home computer. It has worked just fine until a few days ago. Just recently I was notified that the app would no longer work because of changes that have been made. I have tried to follow the instructions that were emailed to me regarding how to setup the new Firefox Sync add-on, but I am having a problem. After downloading Mozilla Firefox 4.0 Beta to my desktop and restarting my computer, I do not receive any prompts to create an account with a password and a secret phrase, as the instructions specify. How do I set up the account if the prompt never shows up?

    Click on the Firefox button then select Options to open the Options dialog. Now go to the Sync panel for the option to setup a new account.

  • Whenever I open Firefox 4.0 Beta 6, and try to log onto websites like Hotmail, Facebook RuneScape etc. it won't let me... Help?

    Whenever I open Firefox 4.0 Beta 6, and try to long onto websites like Hotmail, Facebook RuneScape etc. it won't let me... I'm finding it frusrtrating and annoying since I cannot use Firefox 4.0 Beta 6. It works on other accounts excluding mine - What is this crap rigged or something? I have to resort to crappy Google Chrome and Safari since it messed up on both of my computers... Here's what it says when I double-click the short-cut: " Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features. " Although, it says the way to help - Can you like, dumb it down for me?
    ALSO, here's what it says when I go onto http://runescape.com - It says: An error occurred during a connection to www.runescape.com:443.
    Can't connect securely because the SSL protocol has been disabled.
    (Error code: ssl_error_ssl_disabled)

    See [[Secure Connection Failed]]
    Create a new profile exclusively for the 4.0 beta version and create a desktop shortcut with -P "profile" appended to the target to launch that profile.
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • How do I uninstall Firefox 4.0 Beta 12 and go back to the older vers

    I made a mistake by downloading Firefox 4.0 Beta 12 and I can't work with this version. How do I go back to the older version. I need help quickly as I am unable to print my work. This is bad.

    Firefox 4 is probably the most un-successful "new" Product since the "New Coke Formula" and the Ford Edsel!
    It has been a '''DISASTER''' for me and many I know.
    The cgi order form button on my own website does not work for anyone using Firefox 4.
    Darn annoying and folks take ages ordering, press the button, assume it has gone though, and sadly nothing reaches me. Annoyed clients and large loss of money for me.
    Tonight I tried to book a complicated multi city International itinerary on United Airlines site. Spent 30 minutes getting it right, went right to "Purchase" page and the SAME issue ..... click "BUY" button - and ZILCH.
    Removed Firefox 4, did it all again, and worked fine using Firefox 3.6.
    Thanks Firefox for wasting a good hour of my time tonight.
    Tech boards all over the globe have reported these glitches for quite a while on order buttons, and the geeks there seem to be all asleep.
    Bill Gates must be laughing his head off - and you now have ''Microsoft's VISTA'' on your hands.
    They did not fix that either, and folks still use it as an example of an "UPDATE" that should never have been released as the bugs were never Beta Tested out.
    Glen

  • Firefox 3.6.13 will not uninstall after I installed Firefox 4.9 beta

    I have Windows XP Pro Service Pack 3. I installed Firefox 4.9 beta and have 2 Firefox browsers (also Firefox 3.6.13). Now I want to uninstall 3.6.13. When I click on uninstall Firefox 3.6.13 from Add/Delete Programs nothing happening - no response. Please help me to resolve this issue.

    You can keep the Firefox 3.6.x version as you may need it to visit websites that do not work properly in the Firefox 4 beta version. Remember that you are using unfinished beta software with know bugs that may not work properly all the time.
    See also:
    * http://kb.mozillazine.org/Testing_pre-release_versions

  • Firefox 4.0 beta is not opening a window when I try to start it up

    downloaded the firefox 4.0 beta on my laptop MacBook Pro, with OSX 10.6.4. Firefox would not open a new window when I tried to start up the application.

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * https://support.mozilla.com/kb/Firefox+hangs

  • Hi, I know how I can correct an inconsistency in the Firefox 4.0 beta 8, the error is: "sorry your browser is not support program by web dympro. " In IE there is a compatibility option firexfox view settings but can correct this error.

    Hi, I know how I can correct an inconsistency in the Firefox 4.0 beta 8, the error is: "sorry your browser is not support program by web dympro. "
    In IE there is a compatibility option firexfox view settings but can correct this error.

    Hi, I know how I can correct an inconsistency in the Firefox 4.0 beta 8, the error is: "sorry your browser is not support program by web dympro. "
    In IE there is a compatibility option firexfox view settings but can correct this error.

Maybe you are looking for