FF6.02 prints screen background even though File/Page Setup/Print Background is off - how to fix this?

My screen background color is off-white & this color comes through on the print page. Page Setup/Print Background is set off.
How do I fix this?

See [https://bugzilla.mozilla.org/show_bug.cgi?id=683139 Bug 683139] – Using the 'High Contrast Black' 'Accessibility Option' in Win XP results in the screen colours being printed.
<i>(please do not comment in bug reports)</i>

Similar Messages

  • My computer was dropped yesterday and it will not turn on past this gray screen that tells me to reboot it but everytime I reboot it, it just goes back to that same screen and tells me to do it again. Anyone know how to fix this?

    My computer was dropped yesterday and it will not turn on past this gray screen that tells me to reboot it, but everytime I reboot it, it just goes back to that same screen and tells me to do it again. Anyone know how to fix this?

    When you jar or drop a hard drive when it's operating the heads strike the platters and ruin sectors and the data on them.
    Your getting the spinning wheel because the OS has been damaged and/or quite possibly the drive.
    You'll first have to determine if it's a hardware issue
    Do #3 Hardware Test and #5 Disk Utlity Repair Disk/Permissions here (check the SMART status)
    Step by Step to fix your Mac
    If the drive is fine and you don't have a recent copy of your data off the machine then also do this
    Create a data recovery/undelete external boot drive
    Then proceed with fixing the damaged software, likley by #8 your problem will be fixed.
    Step by Step to fix your Mac

  • The song _____could not be used because the orignial file could not be found. anybody know how to fix this in windows?

    The song____could not be used, because the original file could not be found. Anybody know how to fix this in windows os?

    I am getting this same message.  I recently bought a new Macbook Pro and the geeks transferred my files from my mini-mac.  Perhaps they did not transfer something critical?  I follow the "locate" option when it asks to find my files and I get a file folder that has a red circle with a white bar in the middle. 
    I have the same issues with my downloaded movies but my apps all seem to be fine.
    Even more confusing - it seems to allow random songs to play and download on my Macbook and other devices.  But most of my music - whether downloaded from iTunes or my CD collection comes up with that message about the original file. 
    Should I get new geeks to locate these files on my old mini-mac?

  • I almost always receive the message "[filename] file couldn't be opened" when opening an existing Pages file in iCloud. Does anyone know how to fix this?

    I am using a MacBook Pro running Yosemite 10.10.2, using Pages 5.5.2.
    I've tried signing off and on, and restarting my MacBook, which sometimes works, but the problem re-occurs. Same problem using Apple Numbers and iCloud.
    Opening local files seems to work more consistently.
    This issue has made Pages and iCloud fairly useless to me. Does anyone have any ideas how to correct this?
    Thanks.

    Hi Ibo,
    This is what just worked for me:
    In Finder, I've dragged all Pages files from the iCloud Drive to the Documents folder on my iMac. (Finder asks your confirmation to remove the files from iCloud; confirm that)
    Once they were on my local hard drive, the files could be opened again.
    It looks to me as if something has changed in iCloud quite recently, leading to this mess. Not the first time, I've had this before. Now it's back. Sigh. And, as you wrote, it renders iCloud fairly useless. Back to Dropbox I suppose.

  • Mixed results on iPad and iPhone 6 Plus with background image. How to fix this?

    Flash Professional CC
    I'm having an issue with adding images on iPhone 6 plus and iPad. I'm getting mixed results with two items: 1) a background image and 2) a button that should appear at the bottom left-hand corner on any device. In one case the background image appears enlarged and only shows about 30% of itself. In the other case, the bottom left-hand button appears about 50 pixels to the left when x=0. I also get different results when I set the following:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    This does not produce the expected results. I would like to have consistent results across iPad and iPhone 6 plus, which seams to be an issue. The immediate fix for this is to leave the images on the stage instead of using addChild. I could then just stretch the background image so that it spans the whole screen. But I want to add the items dynamically for greater flexibility.
    Here are two cases:
    Case #1:
    This an iPhone 6 plus and you should notice 2 things. 1) There is black and white on both sides. The blue background SHOULD APPEAR ACROSS THE WHOLE SCREEN. 2) The red button in the corner SHOULD APPEAR IN THE LEFT MOST CORNER OF THE
    SCREEN.
    Case #2:
    This an iPhone 6 plus and I have set the scale X, Y to the stage.stageWidth/Height:
    mc_stageBackground_Main.scaleX = stage.stageWidth;
    mc_stageBackground_Main.scaleY = stage.stageHeight;
    This results in a close up of the background image.
    Here is the code that I'm using:
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    //When this is active the background image spans across the device (iPhone 6 plus) correctly. The main logo image does not line up correctly.
    /*stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;*/
    var main_logo:MC_LOGO_MAIN = new MC_LOGO_MAIN();
    var mainBackground_2208: MC_MAIN_BACKGROUND_2208 = new MC_MAIN_BACKGROUND_2208();
    var mainBackground_1024: MC_BACKGROUND_1024 = new MC_BACKGROUND_1024();
    var mainCorner: MC_MAINCORNER = new MC_MAINCORNER();
    var chapters: MC_CHAPTERS = new MC_CHAPTERS();
    var _stageWidth = 1024;
    if (stage.stageWidth > _stageWidth)
        //Add bigger background if the stage is bigger than 1024
        mainBackground_2208.x = stage.stageWidth/2;
        mainBackground_2208.y = stage.stageHeight/2;
        addChild(mainBackground_2208);
        //Using this code results in a very close up view of the stage on iPhone 6 plus  
        /*mc_stageBackground_Main.scaleX = stage.stageWidth;
        mc_stageBackground_Main.scaleY = stage.stageHeight;*/
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild(mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //add logo to sit at 50 pixels from the top of the stage
        /*main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});*/
    else
        trace ("The stage is 1024 or smaller");
        //Add 1024 background if stage is 1024 or smaller
        mainBackground_1024.x = stage.stageWidth/2;
        mainBackground_1024.y = stage.stageHeight/2;
        addChild(mainBackground_1024);
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild (mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //adds chapters
        chapters.x = (stage.stageWidth - stage.stageWidth)+75;
        chapters.y = stage.stageHeight - 120;
        addChild(chapters);
        TweenLite.from(chapters, 1,{ height: 0, delay:.5, ease:Elastic.easeOut});  
        //adds the Main logo to sit at 50 pixels from the top of the stage
        main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});

    On all of the devices go to settings - facetime - iphone cellular calls - oFF, this part of Apple continuity.

  • Flash causes Firefox to slow down and even freeze (and on a gaming laptop, too). How to fix this?

    Every time I use the Flash plug-in (for videos on YouTube or PutLocker or whatever), FireFox just slows down a lot and even freezes. It happens very often now and it's really annoying.
    By the way, I am using a gaming laptop so I am not sure why I am having these problems. My Flash plug-in and firefox are updated to the latest versions, too.
    My specs:
    Windows 7 Home Premium
    Intel i7-2670QM CPU @ 2.20GHZ (8 CPUs)
    nVidia GTX 560m 3GB vRAM dedicated
    16GB RAM

    Okay, so I uninstalled and reinstalled it. That helped only for about ten minutes and it started doing it again.
    I don't know what else to do. :S

  • Clicking MOZILLA icon, I get "Firefox can't find file .....". How to fix this?

    I've used this MOZILLA icon successfully for several years, but something has changed and I now have to use another browser(?) --- I think it's called a browser.
    This happens every time I click on MOZILLA, starting Fri, Aug 26, 2011

    You created a bookmark to a file on your computer, and the file has been moved, or deleted, or it never existed.

  • Real Player Video Downloader does not work anymore - isn't even accessible anymore - after Firefox / Adobe Flash Player update, how to fix this?

    Real Player Video Player no longer provides option to download after my Firefox / Adobe Flash Player updated. How can this be fixed?
    == This happened ==
    Every time Firefox opened
    == After FireFox / Adobe Flashplayer Update

    Hi David, try dropping the .dll extension, in fact you can just enter dom.ipc.plugins and it should come up. Or enter the whole thing and then backspace until it comes up. Also, I have Windows 7(x64) and this fix worked fine for me.

  • There is no pic shown when someone calls me. Not even the thumbnail view. How to fix this?

    I just reset my iphone. Now there is no pic shown when someone calls me. Not even the thumbnail
    view on top right corner. How to fix this?

    Have you entered pics for contacts in your contacts?

  • HT5463 Hi I am on an iphone 5 IOS7 and when I look at the 'Silence' setting at the bottom of the Don Not Disturb' screen - then even though all of the settings on that screen are off i.e. not green - the 'Silence' -'Only when iPhone is locked' setting is

    Hi I am on an iphone 5 IOS7 and when I look at the 'Silence' setting at the bottom of the Don Not Disturb' screen - then even though all of the settings on that screen are off i.e. not green - the 'Silence' -'Only when iPhone is locked' setting is tickedP

    Chris thanks for your reply, if none of the Do Not Disturb settings are switched on - then am I right that this setting will have no effect. I.e. I want my phone to ring at all times, so have turned off all of the do not disturb settings

  • I have some presentation on the ipad 2 which went missing even though it is still on the icloud.  how do i load them onto the ipad again?  I have already updated the keynote and am currently on ios8

    i have some presentation on the ipad 2 which went missing even though it is still on the icloud.  how do i load them onto the ipad again?  I have already updated the keynote and am currently on ios8

    Here you go:
    You should be able to hit the "Agree" button, if you are on an iPhone right now. On a Mac, you should just left click the button where it said "Accept". I hope this helped.
    To quit the app store, simply hit these keys:
    Than, you should come up with this window:
    Select the app store with:
              a) The up and down arrow keys
              b) Your cursor
    Than hit the 'Enter' button twice. This should close the app store. The force quit window is also accesible through the apple logo in the top left corner of the screen. It should say:
    Force Quit...

  • In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    kgwrotethis wrote:
    10.6
    Use Software Update to update your os to 10.6.8 and anything else that needs to be updated.  After the installations go to /Library/Preferences - trash the com.apple.Preview.plist file.  Repair permissions, restart your computer and empty the trash.  Your Preview issue should now be resolved.

  • I am having major issues with links in keynote! Even though the links (a navigation system) are on the master page, they are only working on some of my slides. Anyone have ideas on how to fix this or similar issues? Help!

    I am having major issues with links in keynote! Even though the links (a navigation system) are on the master page, they are only working on some of my slides. Anyone have ideas on how to fix this or similar issues? Help!
    I have created a navigation system on the master pages and set the presentation to links only mode. I also have other links scattered throughout the program, like a linkable table of contents, etc. Some of them work, some of them don't. Not sure why. Anyone out there having similar issues? Or have any idea on how I can solve this issue? Any help would be appreciated!
    Thanks!

    Links should not create any problems in Keynote.  If they are set up correctly on text, the text will be underlined. Objects that have links will have a curved arrow bottom right, if you click the arrow a popup will display the link information.
    Try this repair for Keynote,  ensure you complete all the tasks and in the order shown:

    delete all the iWork applications if you have them, not just Keynote, using Appcleaner from Mac Update, its a freeware application

    empty the trash:  Finder > Empty Trash

    Shut down your Mac, wait 30 seconds, then power on the Mac, immediately after the start chime, hold down the Shift key
    When you see the grey Apple symbol and progress indicator (a spinning gear), release the Shift key.
    If you are prompted to log in, type your password, then hold down the Shift key again as you click Log in.
    4  
    Let the Mac fully boot up, it will take longer as the OS is repairing the drive

    when fully booted, go to Applications > Utilities > Disc Utility; click on the boot drive then First Aid tab and click  repair disc permissions

    when complete, restart the Mac normally, Apple menu > Restart

    install Keynote from the Mac App Store
    let us know if this helped

  • Even though I have a $17.43 balance from itunes gift card, itunes keeps wanting me to enter my billing info.  Anyone know how to fix this problem?

    Even though I have a $17.43 balance from an itunes gift card, itunes keeps wanting me to enter my billing info.  Anyone know how to fix this problem?  Thanks!

    It's asking to verify your info.
    Select None under the credit card option and verify your info.

  • My daughters Ipod touch is disabled for 22,427,950 minutes.  Does anyone know how to fix this?  It also goes to black screen when in use, even when battery is charged.

    My daughters Ipod touch is disabled for 22,427,950 minutes.  Does anyone know how to fix this problem?  The screen also goes to black when using it, even if battery is fully charged.
    Thanks

    http://support.apple.com/kb/ht1212
    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
     In Memory of Steve Jobs 

Maybe you are looking for

  • Error installing itunes on windows xp a network error occurred

    i have trouble installing iTunes 10.2.2 on WIndows XP computer. Everytime i get message that a network error occurred. What is the trouble here? Any help is appreciated!

  • [SOLVED] i3bar workspace buttons

    Hi, I'm setting up i3 for a test run after using spectrwm for the past year. Maybe someone could help me with i3bar's workspace buttons. I just can't figure out how to get that nice 1px solid border around them like in a lot of screenies I've seen. F

  • Content Areas / Upload ing Docs / TEMP space

    When uploading documents to content areas, the TEMP tablespace gets filled up and eventually runs out of free extents. (at the end user level, can't upload docs anymore).. Has anyone on this board come across this or have any solutions/ideas ? null

  • Multiple Users on a Mac OS X server

    Hello everyone, I was recently given the responsibility for a departments Mac OS X server since I have a Linux/BSD/Unix background. Each semester requires a between 75 to 100 new users to be added to this departments server. I would like to find a sc

  • How can I handle MySQL UNIX_TIMESTAMP function?

    I'm converting a MySQL application from into Oracle I would appreciate any suggestions on how to convert the following MySQL statement to Oracle. SELECT messageid,entered,viewed, ABS(UNIX_TIMESTAMP(entered) - UNIX_TIMESTAMP(viewed)) AS responsetime F