Upgrading to Firefox 17 on ubuntu linux 10.04 caused my xmodmap remapped keys to not work in Firefox

After upgrading from Firefox 16 (16.0.2+build1-0ubuntu0.10.04.1) to Firefox 17 (17.0+build2-0ubuntu0.10.04.1) on 22-November-2012 I no longer can use an xmodmap remapped F key in Firefox. It still works in other gnome programs but pressing the new F key anywhere in Firefox 17 produces no action. I even had to use the gedit program in order to type all this before copying it into the Ask a Question form.
Here is my situation: I use Ubuntu Linux 10.04 LTS on a circa 2004 Sony Vaio notebook pc. I've been using linux on it dating back to Ubuntu 8.04. When I got the used pc the "F" key on the keyboard was broken off. I programmed the .xmodmaprc file in my home folder to initiate the "Keycode 133 = F" command on startup in order to remap the missing key to the unused Windows Logo key on the lower left of the keyboard. This has worked flawlessly for over four years. In all prior versions of Firefox going back to whatever version was included in Ubuntu 8.04 I have had no trouble using this key through all Firefox upgrades until now.
On the morning of 22-Nov-2012 the Update Manager notified me of an upgrade to the following packages as shown in the history log of Synaptic Package Manager:
Commit Log for Thu Nov 22 09:20:16 2012
Upgraded the following packages:
firefox (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
firefox-branding (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
firefox-gnome-support (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
firefox-locale-en (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
ubufox (2.1.1-0ubuntu0.10.04.1) to 2.6-0ubuntu0.10.04.1
xul-ext-ubufox (2.1.1-0ubuntu0.10.04.1) to 2.6-0ubuntu0.10.04.1
After performing the upgrade and restarting Firefox I noticed I was no longer able to use my remapped F key at all. I checked other programs and it worked OK so I know it's a Firefox 17 problem only. I tried reinstalling all the packages again with no results. I even went so far as to perform a Reset Firefox in Help-->Troubleshooting Information to try and get it working. All this ended up doing was removing all add-on extensions and changing some of my settings in Preferences but I'm not positive of any changes beyond the Location Bar setting in Privacy changing from Nothing to History and proxy setting going from No to Auto-Detect.
The only solution that has worked to fix this problem is uninstalling Firefox 17 and reinstalling Firefox 16 using a downloaded firefox_16.0.2+build1-0ubuntu0.10.04.1_i386.deb file from Ubuntu as Firefox 16 no longer shows up in the main repository since 22-November-2012. The only versions available for a Force Version in Synaptic are 3.6 and 17 now. After downgrading only the firefox package shows version 16.0.2, all other components I listed above stayed at version 17. I don't know if this will cause any other problems but so far nothing bad has happened.
After I submit this question I will be downgrading again to Firefox 16 until this problem can be solved.
Edit: noted the following Language Packs were disabled on restart after downgrading to Firefox 16 again:
English (GB) Language Pack 17.0
English (South Africa) Language Pack 17.0
If my memory is correct I only remember having an English (GB) Language Pack in all prior versions of Firefox. Firefox 17 was the first time I noticed a English (South Africa) Language Pack installed. It's possible the problem with xmodmap keys not functioning in Firefox 17 could be related to something in these two packs.

Ok I tested a bunch of different Firefoxes on my pos linux box.
'''''Worked with xmodmap:'''''
Vanilla 16.0.2,
Vanilla 16.0B6,
Ubuntu Firefox 16.0.2 (16.0.2+build1-0ubuntu0.10.04.1)
'''''Did Not Work with xmodmap:'''''
Vanilla 17.0.1,
Ubuntu Firefox 17.0.1 (17.0+build2-0ubuntu0.10.04.1)
I have an old Dell Dimension 2400 I plan to use as a replacement for the Sony Vaio when it pops. I've held out as long as possible because it lacks a pci or usb wifi and I really didn't want to run 50 feet of cat5 up a flight of stairs to it. [as i type this i think i remember where a linksys stick for it might be]. Yes I guess it's about time I just do that.
Don't laugh but the reason I held off adding a simple usb keyboard was just lack of space in my tiny bedroom. My setup is on two tray tables side-by-side. Sony Vaio is on left one, my lcd monitor and mouse are on the other. I barely have room to put a cup of coffee on the one with monitor and mouse let alone a full size usb keyboard lol.
Anyway thank you again for all your help.

Similar Messages

  • The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    Hello gokulaan, '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Backspace, Del, Arrow keys, Tab not working in Firefox when applying validation

    Hi,
    I am developing a webpage with some textboxes requiring only alphabets or alphanumeric text to be accepted. I am using DevExpress controls and following is the javascript code that executes on keypress
    function fn_allowAlphabetspace(s, e) {
    var theEvent = e.htmlEvent || window.event;
    var key = theEvent.keyCode || theEvent.which;
    debugger;
    key = String.fromCharCode(key);
    var regex = /[a-zA-Z ]/;
    if (!regex.test(key)) {
    theEvent.returnValue = false;
    if (theEvent.preventDefault)
    theEvent.preventDefault();
    All the browsers except firefox allow Backspace, Del, Tab, Arrow keys, Home, End key to work perfectly. Firefox does not allow any of these to work on the textboxes.
    Thanks
    Shitiz

    Hi,
    I tried to solve it by debugging the javascript and found the below code to be working for firefox as well as on other browsers IE10, Chrome and Safari without any issues
    //validation function to allow only alphabets and space
    function fn_allowAlphabetspace(s, e) {
    var searchSpecial = '$Backspace$Del$Home$Tab$Left$Right$Up$Down$End$';
    if (searchSpecial.indexOf('$' + e.htmlEvent.key + '$') < 0) {
    var theEvent = e.htmlEvent || window.event;
    var key = theEvent.keyCode || theEvent.which;
    key = String.fromCharCode(key);
    var regex = /[a-zA-Z ]/;
    if (!regex.test(key)) {
    theEvent.returnValue = false;
    if (theEvent.preventDefault)
    theEvent.preventDefault();
    Please not that parameter '''''e''''' passed in the function provide the details of the keypress function. I am using DevExpress ASPxTextBoxes. Anybody who wants to use this function need to make changes in the above code as per the control used
    Thanks
    Shitiz

  • ShowHide onclick not working in Firefox nor Safari

    I have a real estate site that's been up for a while.  The floor plans showHide is now not working in Firefox nor Safari (still works in IE).  I would swear that it previously was working (6 months ago?).
    I'm sure I have a coding error someplace -- or have upgrades in the browsers disallowed the showHide script?  I'd rather not have to completely rewrite the page if I don't have to, so a quick fix would be preferable to having to rewrite the entire page.
    The page is a simple 3-layer:  the default visible layer is a plain site plan.  Imagemap showHide on mouseover create a mouse-over effect on each of the units; that mouseover aspect works properly in all browsers (it's showing and hiding any of 4 images depending on where the mouse is on the page).  What is not working is the onClick hot spot on each of the highlight images; the blank a=href"" comes up rather than the onClick... desitination.  Make sense?
    I tried both using the onClick within an <a> tag and on the image iteself (no <a> tag).  Neither works (except, again, in IE).
    I'm still on CS3; perhaps that's the issue?  I've been surfing to see if my script is outdated but unable to find anything useful, so thought I'd try this forum.  In my header, this is the FUNCTION that Dreamweaver put in.  Is v9.0 current?
    function MM_showHideLayers() { //v9.0
      var i,p,v,obj,args=MM_showHideLayers.arguments;
      for (i=0; i<(args.length-2); i+=3)
      with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
        if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
        obj.visibility=v; }
    The live page is at http://sweetzerterrace.com/fp/index.html
    CSS page is at http://sweetzerterrace.com/sweetzer.css
    Here is the full body code; I have bolded the relevant sections.  Pretty straightforward stuff, so I'm confused as to why it ceased to work.
    Help much appreciated!
    <body class="sweetzer" onload="MM_preloadImages('../i_sweetzer/nav_gallery_on.png','../i_sweetzer/nav_features_o n.png','../i_sweetzer/nav_fp_on.png','../i_sweetzer/nav_location_on.png','../i_sweetzer/na v_brochures_on.png','../i_sweetzer/nav_agent_on.png')">
    <div id="container">
    <div id="absolute">
      <div id="address"><img src="../i_sweetzer/address.png" alt="125 S. Sweetzer, Los Angeles/90049" width="950" height="114" /></div>
      <div id="navigation"><a href="../galleries/index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavGallery','','../i_sweetzer/nav_gallery_on.png',1)"><img src="../i_sweetzer/nav_gallery.png" alt="photo galleries" name="ImgNavGallery" width="275" height="31" border="0" id="ImgNavGallery" /></a><a href="../features/index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavFeat','','../i_sweetzer/nav_features_on.png',1)"><img src="../i_sweetzer/nav_features.png" alt="features" name="ImgNavFeat" width="105" height="31" border="0" id="ImgNavFeat" /></a><a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavFPs','','../i_sweetzer/nav_fp_on.png',1)"><img src="../i_sweetzer/nav_fp.png" alt="floor plans" name="ImgNavFPs" width="129" height="31" border="0" id="ImgNavFPs" /></a><a href="../location/index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavLocation','','../i_sweetzer/nav_location_on.png',1)"><im g src="../i_sweetzer/nav_location.png" alt="the location" name="ImgNavLocation" width="141" height="31" border="0" id="ImgNavLocation" /></a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavBroch','','../i_sweetzer/nav_brochures_on.png',1)"><img src="../i_sweetzer/nav_brochures.png" alt="brochures" name="ImgNavBroch" width="126" height="31" border="0" id="ImgNavBroch" /></a><a href="../agent/index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('ImgNavAgent','','../i_sweetzer/nav_agent_on.png',1)"><img src="../i_sweetzer/nav_agent.png" alt="the agent" name="ImgNavAgent" width="174" height="31" border="0" id="ImgNavAgent" /></a>
      <!--end div NAVIGATION --></div>
    <div id="sweetzer"><img src="../i_sweetzer/sweetzer.png" alt="Sweetzer Terrace Condominiums" width="50" height="504" /></div>
    <div id="swtMovie">
        <div id="sitePlan"><img src="fpi/sitep.png" alt="site plan" width="900" height="504" border="0" usemap="#SitePlanRolls" />
    <map name="SitePlanRolls" id="SitePlanRolls">
      <area shape="rect" coords="100,95,349,387" href="#" alt="hover03's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','show','hover02','','hid e','hover01','','hide')" />
      <area shape="rect" coords="379,99,797,226" href="#" alt="hover02's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','sho w','hover01','','hide')" />
      <area shape="rect" coords="352,253,814,380" href="#" alt="hover01's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','hid e','hover01','','show')" />
    </map></div>
      <div id="hover03"><a href="#" onClick="MM_showHideLayers('hover03','','hide','fp03','','show')"><img src="fpi/site_03hover.png" alt="units 03 - click to view floor plan" width="900" height="504" border="0" usemap="#SitePlanRolls" />
    <map name="SitePlanRolls" id="SitePlanRolls">
      <area shape="rect" coords="100,95,349,387" href="#" alt="hover03's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','show','hover02','','hid e','hover01','','hide')" />
      <area shape="rect" coords="379,99,797,226" href="#" alt="hover02's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','sho w','hover01','','hide')" />
      <area shape="rect" coords="352,253,814,380" href="#" alt="hover01's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','hid e','hover01','','show')" />
    </map></a></div>
      <div id="fp03"><img src="fpi/fp03.png" alt="floor plan 03" width="900" height="504" border="0" onclick="MM_showHideLayers('fp03','','hide','sitePlan','','show')" /></div>
      <div id="hover02"><a href="#" onclick="MM_showHideLayers('hover02','','hide','fp02','','show')"><img src="fpi/site_02hover.png" alt="click to show floor plan 02" width="900" height="504" border="0" usemap="#SitePlanRolls" />
    <map name="SitePlanRolls" id="SitePlanRolls">
      <area shape="rect" coords="100,95,349,387" href="#" alt="hover03's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','show','hover02','','hid e','hover01','','hide')" />
      <area shape="rect" coords="379,99,797,226" href="#" alt="hover02's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','sho w','hover01','','hide')" />
      <area shape="rect" coords="352,253,814,380" href="#" alt="hover01's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','hid e','hover01','','show')" />
    </map></a></div>
      <div id="fp02"><img src="fpi/fp02.png" alt="floor plan 02" width="900" height="504" border="0" onclick="MM_showHideLayers('fp02','','hide','sitePlan','','show')" /></a></div>
      <div id="hover01"><a href="#" onclick="MM_showHideLayers('hover01','','hide','fp01','','show')"><img src="fpi/site_01hover.png" alt="click to show floor plan 01" width="900" height="504" border="0" usemap="#SitePlanRolls" />
    <map name="SitePlanRolls" id="SitePlanRolls">
      <area shape="rect" coords="100,95,349,387" href="#" alt="hover03's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','show','hover02','','hid e','hover01','','hide')" />
      <area shape="rect" coords="379,99,797,226" href="#" alt="hover02's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','sho w','hover01','','hide')" />
      <area shape="rect" coords="352,253,814,380" href="#" alt="hover01's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','hide','hover02','','hid e','hover01','','show')" />
    </map></a></div>
      <div id="fp01"><img src="fpi/fp01.png" alt="floor plan 01" width="900" height="504" border="0" onclick="MM_showHideLayers('fp01','','hide','sitePlan','','show')"  /></div>
      <!--end swtMovie (floor plans) --></div>
    <div id="footer">
    <p><a href="../agent">Represented by Mina Barin<br />
    <span class="small">DRE-CA # 01065894</span><br />
    310.246.0212</a><br /><br />
    <span class="small"><a href="../disclaimers">DISCLAIMERS</a><br />
    © COPYRIGHTED MATERIALS; ALL RIGHTS RESERVED<br />
    <a href="http://pixel-relish.com/" target="_blank">SITE BY PIXEL-RELISH.COM</a></span></p>
    <!--end FOOTER --></div>
    <!--end ABSOLUTE --></div> 
    <!--end CONTAINER --></div>
    </body>

    This is a very unusual attempt.  You have both an anchor tag wrapping the image, AND hotspots on the image.  I'm not surprised you are finding a conflict between those two.
    <div id="hover03"><a href="#" onClick="MM_showHideLayers('hover03','','hide','fp03','','show')"><img src="fpi/site_03hover.png" alt="units 03 - click to view floor plan" width="900" height="504" border="0" usemap="#SitePlanRolls" />
    <map name="SitePlanRolls" id="SitePlanRolls">
      <area shape="rect" coords="100,95,349,387" href="#" alt="hover03's" onmouseover="MM_showHideLayers('sitePlan','','hide','hover03','','sho w','hover02','','hide','hover01','','hide')" />
    What is it you are hoping this will do?

  • URL Does Not Work in Firefox, but DOES Work in Other Browsers

    The following URL does NOT work in Firefox. However, it DOES work in Internet Explorer and Google Chrome:
    https://www.ascap.com/ace/
    The main ASCAP URL works just fine. The problem seems to be confined to this link alone. Please fix; thank you!

    There is a server redirect on this URL.
    <pre><nowiki>
    https://www.ascap.com/ace/
    GET /ace/ HTTP/1.1
    Host: www.ascap.com
    HTTP/1.1 302 Found
    Location: https://www.ascap.com/Home/ace-title-search/index.aspx</nowiki></pre>
    If you use a bookmark then try to navigate to the want page starting with the main (home) page.
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Google instant is not working with firefox 9.0.1

    google instant is not working with firefox 9.0.1. what should I do?

    Hi,
    If you are not signed in, please try after deleting all the cookies for '''google''' in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Privacy''' > '''Show Cookies''' > '''Search'''. Hard refresh ('''Ctrl''' + '''F5''') the search page if necessary.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • FB game not working in Firefox but works in AOL browser, solution needed please!

    The game is WORDS WITH FRIENDS.

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • Flash Player not working in Firefox

    Suddenly Firefox will not play flash player content called
    when I play games online. It worked fine a few days ago.
    When I click on the link, it opens the game page, but where
    the game should appear, I see a blank black box. When I click on
    the "Play online game" link I also get a large empty black box.
    I am running Windows XP on an HP Pavilion ze2315us laptop. I
    recently installed trial version of Adobe Acrobat 8 Pro.
    In efforts to fix the problem I tried the following:
    Removed adblocker addresses that might conflict.
    Checked blocked sites
    Removed and reinstalled Flash Player.
    Reinstalled Firefox.
    Set folder options to use Firefox to open SWF files
    All to no avail.
    I tried the web site in IE. Had to download and install Flash
    Player again but it works fine in IE.
    Afterwards, it still did not work in Firefox.
    Any tips would be greatly appreciated.
    Thanks.

    Hello,
    I have a similar problem in Linux Fedora 16.
    I have installed adobe flash-plugin 11.2.202.233
    In Google Chrome I can see flash applications very well.
    But in Firefox 11.0 flash does not work.
    When I look in about:plugins I see:
    Shockwave Flash
    File: nswrapper_32_32.liblashplayer.so
    Version:
    Shockwave Flas 11.2 r202
    application/x-shockwave-flash
    Shockwave Flash
    swf
    application/futuresplash
    FutureSplash Player
    spl
    Please, in which OS did you worked?
    In the past I with other versions, it did work without any problem.
    Perhaps I can look if I have firewall is turned on?
    Thanks in advance for any answer,
    Greetings,
    Gaston Verhulst.

  • Battlelog (for battlefield 3) does not work with Firefox 15.0.1. It works fine with the older Firefox 14.0.1

    The flash features on the Battlefield 3 site - battlelog.battlefield.com do not work when Firefox updates itself to 15.0.1 It does not load the pages correctly or does it let you select/ click on anything in the flash parts. When I uninstalled 15.0.1 and reinstalled Firefox 14.0.1 I unchecked the option to let firefox re-upgrade itself and battlelog works fine.

    I do not wish you to break Firefox on Battelfield 3, but have you tried using the latest version of Flash Player. You should also remember that using outdated versions of Firefox increases security risks to your computer and personal data.
    You may get an answer to this sort of question faster by asking on a forum related to that game site, (and if you do please post back with the solution preferably with a link).
    Possibly you could consider using Firefox 15 and later as the day to day browser, and Firefox 14 only for the problem games.
    *The simplest way to do that may be to install Firefox portable (I assume that will run a Firefox 14 version)
    * A better way would be to install multiple versions of Firefox. That is often considered advanced, but I imagine most experienced computer users could do it easily (I can provide links to instructions). That has the advantage that the problem could be looked at a bit more closely, possibly even filing a bug if it appears to be a Firefox regression causing the problem.

  • Site Not Working On Firefox?

    Hello. This might be more of an issue with Tumblr itself, as opposed to Firefox, but I figured it would be worth posting here as well, since this is an issue that seems to be happening only on Firefox. I have contacted Tumblr regarding this issue, so here's what I wrote to them:
    "Hello. As of today, whenever I try to edit some of my posts, Tumblr will not return me to my dashboard. Usually when I edit a post, Tumblr returns me back to my dash, but as I said, today it isn't doing this. According to one of the people I follow, this was a problem earlier today, but it seems to be still occurring somewhat for me.
    Here are a few facts:
    1) This only seems to be happening on Firefox... however, I have not done anything to change Firefox in the past two weeks at least, and editing posts was working fine/not causing this before today.
    2) I do have ad-ons, but I got rid of them and reset Firefox in order to test if the problem went away if all my add-ons were gone. The problem still happened, so add-ons are not the issue.
    3) Everything is up-to date on my main browser, so obsolete tech is also not the problem.
    So...what's the issue here?"
    Also, just for added context, I also restarted my internet connection (twice!) as well as my computer itself. I have tried replicating this issue in Chrome and IE, but both operate normally- This issue is only happening on Firefox, hence why I am posting here. The only thing I haven't tried is removing Firefox completely and redownloading it, only because I believe it would be similar to resetting it, seeing as how both methods reset the browser to original factory settings (if anyone knows otherwise, feel free to correct me).
    But yeah...what's the deal here?
    Edit: One of my Tumblr followers was also experiencing this issue, but isn't anymore...however, obviously I'm still having this issue. Just providing this edit for additional context.
    Edit 2: Some images of the issue<br />
    http://i905.photobucket.com/albums/ac254/unholycow/timestamp1_zps6396f1a4.jpg<br />
    http://i905.photobucket.com/albums/ac254/unholycow/returning1_zpsacdaad6c.jpg<br />
    http://i905.photobucket.com/albums/ac254/unholycow/timestamp2_zps7a880efa.jpg<br />
    http://i905.photobucket.com/albums/ac254/unholycow/returning2_zpsa03980b5.jpg

    Could you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Try to use JPG or PNG image file format and make it public view.
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When I right click on an Item to copy and pasdte it the Copyt button on my mouse does not work with firefox, it works everywhere else...I highlight an item andt

    I have tried all the solutions so far. they did not change the outcome. My right mouse will not show the copy command. I am getting the drop down menu when I right click and I can highlight words but when I right click to copy and paste the copy does not work... it was working fine until I did the last update for foxfire.. I have 22.0 version

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Why is trendmicro toolbar not working with firefox 4

    Having upgraded to firefox 4 I now find that the my antivirus trendmicro toolbar doesn't work with firefox 4. This of course makes me very reluctant to continue using firefox because of security reasons. If you have a solution to this problem then please let me know asap.
    Thank you.

    The update for the Trend Micro Toolbar will be issued on the second week of JUNE 2011. How do I know this?
    http://esupport.trendmicro.com/solution/en-US/1058585.aspx%EF%BB%BF
    Says so there. Want more info?
    http://community.trendmicro.com/t5/Home-and-Home-Office-Forum/UPDATE-Toolbar-For-Mozilla-Firefox-4-0/td-p/32014/page/4
    Hope this helps, because I am one of the people as well with Firefox 4 and no Toolbar.

  • Youtube video not working in firefox.

    Hi everyone,
    I'm having problems playing youtube videos on firefox. Yet I don't seem to have any problem playing flash supported videos on other sites, but whenever I try to play a video on youtube all I get a is a black box. Is there any suggestion I didn't have this problem before.
    I'am currently using Firefox 24.0 Browser which is upto date, and the plugin I use to watch any flash enabled video is Shockwave Flash 11.9.900.117 r900 .

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • The Enter Key does not work in the location bar; I have to manually select the "Go To" icon since upgrading to Version 10.

    I just upgraded to Firefox 10. When I manually enter a URL into the location bar, the "Go To" arrow does not have focus, so the Enter Key will not work. I have to manually select the "Go To" arrow to navigate. Any suggestions?

    This could be the AVG safe search extension. If you have that installed, try disabling it. Instructions here: [[Using extensions with Firefox#w_how-to-disable-or-remove-extensions]]

  • SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    SWF Files do not work in Firefox. My sites work fine in Explore & Safari? Why is this? I have updated all my plugins, reinstalled yet still nothing?

    Can you post a link?
    Does that only happen on that website or do you have that problem with all Flash content?
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

Maybe you are looking for

  • Error using python multiprocessing in Azure Machine Learning

    I want to do some parallel data manipulation in Azure ML but I can't seem to get multiprocessing to work.  So when I try this simple example in Azure ML Python Script Module import multiprocessing def azureml_main(dataframe1 = None, dataframe2 = None

  • How to find value in internal table

    Hi, I'm trying to search a value in internal table by using the FIND TABLE syntax but there's an error message saying In CHAR MODE a character-like, or in BYTE MODE a byte-like field is expected as the row type for the table "ITABLE".  The internal t

  • Weblogic Server upgrade along with Forms & Reports

    Hi Gurus, I would need some help on upgrading one our Weblogic server from 10.3.2 to 10.3.6. Also, we have forms & reports ( version: 11.1.1.2 ) configured on this server and we would have to upgrade this to version: 11.1.2.1 Can you please help me o

  • Jpeg in camera raw on surface pro 3

    when I open a jpeg on my surface pro 3 in camera raw, the adjustments don't align with the tool. this does not happen with raw images.

  • Approch while creating a custom field in PR05 transaction

    Hi All, I need to add a new custom field in the trip creation screen PR05. Are there any screen exits available for the same. If not, how can I maintain the value in the comments text editor dynamically. Please suggest, Any replies will be highly app