4.0 flashes or sustains a glaring white screen when opening a new tab 0r a new url-can this be corrected to show a dark transition screen instead?

We have a special color theme which we use for all your previous versions of Firefox so as to eliminate all white screen glare which has been successful until we installed 4.0. When opening a new tab the screen now flashes a stark white eye-strain glaring white light, and much worse when opening a url site this condition does not flash but lingers as long as it takes (sometimes very long) to load a new url. Since this never happened with previous versions, how can this be corrected without having to return to Firefox 3.6?

You can cause a new tab to display the site of your choice by installing the following Add-on:
*https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
*after installing, set the options by going to Add-ons > Extensions >New TabURL > Options
Also see --> https://addons.mozilla.org/en-US/firefox/addon/new-tab-homepage/
*If you have multiple home pages, the first one is automatically chosen by this Add-on
Future versions of Firefox will/may have this option without an Add-on.
'''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

Similar Messages

  • Flash movie just has a white box when previewed

    Working in Flash CS4
    My question is when I publish my flash movie it opens fine on my computer but when I copy the folder with all the contents to another computer the skin show up fine but I get a white box where the movie should be. The same goes if we try to place it on a website. Files are available here to view
    ftp.azcaf.org
    Username: rickadobe
    Password: forum4HELP (case sensitive)

    Hi,
    I have taken a look at your .fla and seems your source file name is not matching with what is available(Bob_Dickson.f4v) & what is specified(Bob Dickson InterviewH264.f4v) in the Component Inspector panel. Either rename your movie from "Bob_Dickson.f4v" to "Bob Dickson InterviewH264.f4v" probably the easiest way or change the Source name for your flv playback component in Component Inspector panel to "Bob_Dickson.f4v" and re-publish the swf.
    Hope this helps
    Thanks!
    ps: pls mark this post as Answered if it was helpful to you

  • Flash movie just has a white box when I preview

    Working in Flash CS4
    My question is when I publish my flash movie it opens fine on my computer but when I copy the folder with all the contents to another computer the skin show up fine but I get a white box where the movie should be. The same goes if we try to place it on a website.
    When I'm in flash should I be going to
    File Publish or
    File Export SWF
    To be placed in a website.

    NAte here is the link to the page that has the flash movie that is coming up as a white box
    http://www.azcaf.org/videos/DICKSON/DICKSON.html
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>DICKSON</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '450',
              'src', 'DICKSON',
              'quality', 'high',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'DICKSON',
              'bgcolor', '#ffffff',
              'name', 'DICKSON',
              'menu', 'true',
              'allowFullScreen', 'false',
              'allowScriptAccess','sameDomain',
              'movie', 'DICKSON',
              'salign', ''
              ); //end AC code
    </script>
    <noscript>
         <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="720" height="450" id="DICKSON" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="false" />
         <param name="AutoStart" value="true" />
         <param name="movie" value="./DICKSON.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />     <embed src="./DICKSON.swf" quality="high" bgcolor="#ffffff" width="720" height="450" name="DICKSON" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

  • Flashes White Screen After Opening Link in Tabs from RSS  Feed

    Hi.
    This is a weird glitch/bug that I'm trying to get to the bottom of. It happens very often, that when I open all of my feeds (they are all collected in one folder so I can view them at once) and choose to open a link from one of the feeds in a separate tab, the entire screen becomes white for a second or two before opening the link. I've been searching around and can't find anyone that has a similar problem or has documented it. I would greatly appreciate if I could fix this.
    Powerbook G4   Mac OS X (10.4.5)  

    My website is on DotMac.
    So that people don't have to remember hompage.mac.com/blablabla,.etc.,
    I purchasd a domain name from Goddady here;
    http://www.godaddy.com/gdshop/default.asp
    My new name is, www.tommurrayartist.com When this is typed in, it is redirected to my DotMac address. It was also masked so the tommurrayartist address shows in the address bar.
    Apparently Safari can't handle this the way Camino can.
    So I unchecked masking in my Godaddy account.
    No more flashing with Safari.

  • White Screen when opening PDF from within a website program

    I have previously been able to use the marketing products associated with http://greenhousebhgre.com   A link takes me to
    http://maryorfali.betteragents.com/admin/marketingmaterials/# and from them I have been able to update my marketing flyers by selecting Create/Edit.  Now I just get a white screen.  These flyers can be saved as PDFs and I am able to open them from outside the website.

    So you are editing your flyers online at that website?  If so, Adobe Reader is not involved in any way; Adobe Reader cannot create or edit PDF documents.
    My suggestion: try another browser.  If that does not help, contact the people who maintain that website.

  • White line when open notification

    when i open notification from app that is not in home screen, i see the white line in top left screen. i find this bug since i upgrade my iPhone to iOS 7.1

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Help Please - Pdf shows/ reads some white pages when opened by some  people

    I have made a pdf book of my artworks ( on a mac) and have a major problem. When I send it out, some people are able to read everything but others get a couple of white blank pages when they view the pdf online or download it or sometimes only either one. It seems to always be the pages that are just black and white...
    However when i try to open the same file i sent them but on my computer at home( MAC) or at work(PC), it works fine.
    But on my Iphone, i get the same problem as these people with the same pages turning blank...
    All Pages of the book were made in photoshop. I saved them as pdf individually before combining everything to a pdf book and i had this problem. Then I tries to save all in jpg and then convert and combine them to a pdf book, still get the same problem.... Some people get white pages....
    Help much appreciated.
    Thank you in advance.

    If you're using GMail see the support article here for how to enable POP
    http://support.google.com/mail/bin/answer.py?hl=en&answer=181714

  • Flash Player 10.1 - Projector exits full screen when opening an external PDF via FSCommand

    I am finding that when I am in Full Screen mode and launching a PDF via a FSCommand, the projector will exit full screen mode.
    I remember this being an issue in Flash Player 9, but 10 resolved the issue. Recently, with 10.1, the issue has come back.
    For the full screen, I am using the code below on the first frame.
    fscommand("fullscreen", "true");
    fscommand("allowscale", "True");
    Thanks.
    - Mike

    Praveen,
    Im in the same boat. - Im trying to open a mac projector .app from inside another .app by using Fscommand "exec".
    After reading this
    http://www.morgadinho.org/2007/03/12/launching-an-app-with-fscommand-on-mac-os-x/
    have created applescripts with .app extension inside Fscommand folder, but to no avail.
    Have heard anything/ had any resolution yet?
    james

  • Unresponsive white sceen when opening browser

    After attempting a browser patch, the stock browser now opens only to a white screen with no other options present.  In a previous post, I've detailed my problems with WebOSDoctor (I have a whiote, 64-GB touchpad), so I'm wondering if anyone can maybe help with the browser issue itself?
    I've tried to uninstall all browser patches, and even tried to restore using text editing to the BrowserAJ.com's original text with no luck.
    Help?
    Thanks - Matt
    Post relates to: HP TouchPad (WiFi)
    This question was solved.
    View Solution.

    I'll try to find out if your device can use the same Dr. File as the other touchpads.  If so, I can give you a direct link to the download.
    WyreNut 
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Previously rock solid MacPro ('08) crashed and now will not boot up past a screen of black, grey and white blocks covered in pink artefacts. Lion recently installed. Can this old warhorse be saved?

    Yesterday the trusted and loyal MacPro froze and on reboot kept going straight to a screen which looks like a modern art collaboration between Kasparov, a robot and the ghost of Jackson Pollock. You can see the artwork in the pictures below.
    Lion has recently been installed.
    Main programmes used are Logic and Final Cut Pro.
    I have taken the machine apart and dusted everything down, talked sternly to the ciruit boards, offered bribes to the CPU and even played it Salsa - I figured that this works in breaking the spirits of kidnappers, so it may work with the hard disk.
    Nada.
    There is a suspicion lingering that the computer was aware of a make or break week of editing coming up and decided to stop working in protest (it is getting on a bit), so I let it rest for a bit before trying another reboot.
    Still no luck.
    Short of going Basil Fawlty on it, is there anything I can do?
    Help!

    Time to put it aside to pasture.... the 8800GT has some known issues.
    Better to replace it now while you can.
    As for your system, w/o another gpu but I'd give 99.999% that you are fine.
    For dust I juse a powerful 500W.
    http://www.amazon.com/Metro-Vacuum-ED500-500-Watt-Electric/dp/B001J4ZOAW/
    Other than the card working its way loose (hard to do) or the 6-pin aux power cable being loose etc.
    Someone said that "post Lion" that many Mac Pro owners have not been able to use their OEM DVD with Apple Hardware Test (the test is on a hidden partition).
    $249 isn't totally bad investment to keep it running.
    Other than FBDIMMs self destructing and being fried @ temps above 72*C and having errors of some sort... which is also solvable.
    And while / IF you can, make sure you have made bootable clone of your system and data, and have some kind of current TimeMachine backup.

  • Why do pdf's flash on screen when opened, then suddenly disappear?

    I'm running Windows 7 on a Toshiba laptop and when I open a pdf, it pops onscreen, but then immediately pops off and is gone.
    What can I do to fix that?

    Thanks you so much for trying to help. Actually, I uninstalled Adobe 11 and went back and installed
    Adobe 10. It took a few tries. But then, the licensing agreement popped on screen and I accepted.
    Now my pdf’s aren’t disappearing anymore, but there’s still a hesitation after they come up.
    The pdf just sits there locked for a few seconds before I can scroll down or affect it in any other way.
    I guess I’ll just have to live with that. At least until I can find a way to fix that too.
    I’m just THANKFUL I can open pdfs again. I really need it for my work.
    Thank you again, so much for your suggestions.
    [private data removed]

  • White screen of death but can see screen when hold down power button?

    I've had my iPod Touch 4g for a few months (in December it will be a year) and for the past two months, I haven't been able to use it because of the white screen of death. I tried reseting it, restoring it (which didn't work because of error 1394 or something like that) and NOTHING seemed to work. Today, I decided to try restoring it again, and it worked!...for all of two hours.
    Now I have the white screen of death but it shows the screen if I lightly hold down the power button (not enough that it clicks).
    I've tried restoring it again, but it stays the same- white screen of death that shows the screen when I lightly hold down the power button.
    Can anyone help me :\

    Contact Apple and get it replaced/serviced.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • Show a Flash animation frame when opening a Powerpoint presentation

    Hi all,
    I have a Powerpoint presentation that embeds a Flash
    animation (swf file). I use Powerpoint 2003 and a Flash 9
    animation.
    The problem is that when the presentation is opened, no image
    (in fact a frame of the Flash animation) appears on the slide that
    contains the Flash object. Instead, a blank rectangle is displayed.
    To make it appear, I must start the presentation in slide
    show mode (here the animation is playing) and then return to
    'Normal' view. The last animation image is then shown on the slide.
    From now, if I save the presentation, close it and then reopen it,
    no image is shown.
    I have tried with different Flash animation versions and
    noticed that an image is displayed for Flash animation when
    compiled in Flash 7. In a Flash 8 animation, no image appears too.
    It seems that a change since Flash version 8 avoids an image to be
    displayed when opening the Powerpoint presentation.
    Has anyone already met this ? Are there security or other
    changes that will prevent a frame to be displayed when opening the
    presentation ? Any ideas or Internet links will be appreciated.
    Thanks

    Hi Dave and thanks for the answer.
    My embedded movie is playing well when we start the slideshow
    mode for the presentation, because it uses the installed activeX
    component (version 9 installed) to render it.
    My problem is that no image (ie the last movie frame
    displayed before exiting the slide show) is displayed the next time
    the presentation opens, even if the file is saved.
    Did you mean that, because the activeX version is newer than
    the PowerPoint 2003 release date, the PowerPoint application is not
    able to get the image (frame) the next time the presentation opens
    (that is, the image to display is embedded into the activeX at a
    specific location, which has changed between Flash player version 7
    and 8) ?
    PS: 1) I have opened the Flash 8 presentation in PowerPoint
    2007 and an image is shown on the slide, which might confirm that
    PowerPoint 2003 is too old to find the frame to be displayed.
    2) I searched into the in-line/off-line documentation and I
    found no paragraph speaking of the Flash version limitation.
    Let me know if I am right.
    Thanks again for the time taken to answer me.
    Rico

  • Flash-based Games Appear as White pages after Chrome Update with Adobe selected as the plugin

    Chrome auto-updated today and since then most of the Flash games load to a white screen.  I always have the Macromedia/Adobe Flash plugin enabled and Pepper Flash disabled, but I'm finding the only way I can display any flash-related games is to disable the Adobe and enable PepperFlash.  The games load, I can hear them, and in some cases the cursor changes to the theme for that game, but the screen will remain white.   Once this started I updated Adobe the latest one, as there must have been a recent release...same problem.   If I have the Macromedia/Adobe Flash Plugin enabled I need to click to any other open tab and then click back again and then scroll slightly and the video will be there immediately.  If I disable Macromedia/Adobe Flash and enable PepperFlash the games display the video with no problem.   These are the exact pages that were working just fine with the Macromedia/Adobe plugin enabled immediately before allowing the Chrome to auto-update.
    Also, when I go to the Adobe site to test the versions it displays the correct revision for the version that's enabled at the time, 12.0.0.41 for pepperflash and 12.0.0,43 for Adobe, but even when the Adobe is the only one enabled and I have closed and reopened the Chrome browser before testing, the site tells me I have the Adobe Flash disabled while still giving the correct version.
    I tried Ingognito mode and it did seem to work, but the only extension I have is AdBlock, which gave me no problems prior.  I disabled AdBlock and tried running the games with Adobe enabled again in normal mode...same problem. 
    Cleared the cache, flash cache...
    All just started immediately after the chrome update. 
    Is anyone else using the same version of Chrome experiencing similar issues with the Macromedia/Adobe flash player enabled?
    Chrome version 32.0.1700.76 m

    Update Firefox to the current version which is 9.0.1
    Here's a list of bug fixes in the latest version which may include yours: http://www.mozilla.org/en-US/firefox/9.0.1/releasenotes/buglist.html

  • Click Firefox shortcut - 4 secs delay WITH white screen, then firefox loads, also every new tab flashes a white blank page fOR half a sec.

    Firefox 31, Windows 8.1, AVG, Spybot, dusabked addins ni change, used several suggestions on internet, nothing works. changed proxy settings to manual 127.0.0.1 and port as suggested - no change, could I have an NSA reroute of firefox?

    Before doing anything I started Tor Browser Bundle, then exited. Started up Firefox – no 4 secs delay, very minor delay but no white page at all it seemed. Then clicked on the Open New Tab (x) and saw a white flash then the new tab – again a .5 sec delay or less before the new tab appeared.
    Shutdown computer. Restarted and clicked on Fireforx shortcut. No blank white page anymore and no delay except for a very minor one.
    But still had the white page flash when loading a new tab from the small x on the current page tab. Saw a white flash, then the new tab loaded. Shut down computer, restarted same problem with the new tab click on the small x - .5 sec or less white flash then tab loads.
    Went into Firefox Add-Ons and disabled a number of items. Surprise no white flash on loading new tab. Decided to enable AVG PrivacyFix 5.0.11 – miracle, no white flash at all on clicking the small x on the current tab. loaded veryfast no delay there.
    Will alert AVG of this issue. But still very surprised that the original main issue of having a 4 secs delay with a completly whtie screen with nothing on it except white disappeared after launching Tor Web Browser throws me for a loop.
    Have not tried BlueHell yet and wonder why I should now in addition to the fact that AVG is certainly far superior to it. But if Bluehell does a better job than AdBlocker, willing to try it.
    Problem appears solved – Why did Tor fix main issue?

Maybe you are looking for

  • I am unable to activate my new Samsung Galaxy Note 8 tablet to read DMR coded books I've purchased?

    I know my Adobe ID and password are correct because I can log into my adobe.com account, but when I try to use an ebook reader to open books I've downloaded to the device I get messages that I must activate the device with my adobe ID to read adobe D

  • How do I disable/remove Nike Fitness from my 7th Generation Ipod nano?

    Everything I read on previous generations is to simply go to "Settings", scroll down to Nike+Fitness, and turn it off. There is no such area in "Settings" that I can see. Hope someone can help. Thanks

  • Variance analysis

    Hi, Can someone suggest a good report for variance analysis in cost object controlling. Thank you Message was edited by:         Ram R

  • Lockbox report

    Hi, Is there any standard SAP report for lockbox processing that provides the information on Customer (ii) Payment amount made (iii) lockbox run date (iv) invoice cleared/posted on account/residual item created etc. Or, are there any tables in SAP fr

  • Guidance needed for KM and Collaboration

    Hi All, I am new to the EP platform.I would be grateful if anybody can help me out with these questions: 1)When I have EP 6.0 installed,does that mean 'Collaboration' capabilities under 'people Integration' are also available to me? 2)If yes,how and