Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων

Printing puzzles from USA Today

When printing puzzles from USA Today on my Canon Maxify, the crossword puzzle and the sudoku both show up as two pages, when they are only one each. If I don't change the… (διαβάστε περισσότερα)

When printing puzzles from USA Today on my Canon Maxify, the crossword puzzle and the sudoku both show up as two pages, when they are only one each. If I don't change the setting from All to Current each time, it will print a blank page with each puzzle. This just started happening within the last month or two, but I have had Firefox/Duck Duck Go for many years. If I switch my browser and search engine to Google, which I hate, it shows and prints each puzzle properly. I don't know if it's the browser or the search engine, but it is a problem that I didn't have until recently. The print box is completely different from Firefox/Duck Duck Go to Google, so if it is Duck Duck Go that sets the printing box, I need to contact them. Firefox version 147.0 on Windows 10 on Lenovo laptop. Thanks in advance to anyone with a solution.

Ερώτηση από chopperdnp 1 μήνα πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

unable to print a google sheet document, download the document to a .pdf or e-mail the document

I'm not sure if this is a FireFox issue or a google glitch, but here goes. Please give me direction on how to correct the above mentioned problems. Thanks in advance for … (διαβάστε περισσότερα)

I'm not sure if this is a FireFox issue or a google glitch, but here goes. Please give me direction on how to correct the above mentioned problems.

Thanks in advance for your time.

 Mary

Ερώτηση από redmanfamily2 1 έτος πριν

Απάντηση από redmanfamily2 1 έτος πριν

  • Αρχειοθετήθηκε

Downloaded file is deleted when close Web window

After downloading a file which is saved to my Mac Download Folder the file is removed once I close the Firefox Web window. I checked the folder before the window was clos… (διαβάστε περισσότερα)

After downloading a file which is saved to my Mac Download Folder the file is removed once I close the Firefox Web window. I checked the folder before the window was closed and the file was there. After closing the window the file is no longer in the folder. Also it is not in the trash.

Ερώτηση από Techie99 1 έτος πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 έτος πριν

I Shuld Let You Be The Judge As To What I Shuld Put here Because I Have No Idea sorry!

Anyway, Im Trying To Print An Email Message To a PDF File But Instead I Get An Error Message That Says : Could Not Open The File Access Is Denied! Is There A Way To Fix T… (διαβάστε περισσότερα)

Anyway, Im Trying To Print An Email Message To a PDF File But Instead I Get An Error Message That Says :

Could Not Open The File Access Is Denied!

Is There A Way To Fix This? If So How Do i Fix This?

Ερώτηση από Robert Burlin 1 μήνα πριν

Τελευταία απάντηση από Robert Burlin 1 μήνα πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

How to Adjust Page Settings

We print a report from an application, and the application allows the user the option to print the "title" of the report. Once the option to print the title is selected a… (διαβάστε περισσότερα)

We print a report from an application, and the application allows the user the option to print the "title" of the report. Once the option to print the title is selected and print report is executed, the report displays in the browser, which can then be printed to a printer. On one machine using Mozilla, everything works as it should, but on a second machine that we are starting to use, even though "print the title" is selected, the title does not appear on the final print output.

In other browsers I see a "page setup" option and that is where I can select "Title" and position where I want it to appear on printed output, and I suspect Firefox must have the same settings, but for the life of me, I can't seem to find it.

I've included the images of the various stages that we are trying to achieve with Firefox on the new machine.

Any assistance would be greatly appreciated.

Ερώτηση από rsnell1 1 έτος πριν

Απάντηση από rsnell1 1 έτος πριν

  • Αρχειοθετήθηκε

Blackmail and Extortion

About once a week, since 1/4/25, I been receiving different emails demanding payment or the author will divulge to all of my email contacts about the pornography I am sup… (διαβάστε περισσότερα)

About once a week, since 1/4/25, I been receiving different emails demanding payment or the author will divulge to all of my email contacts about the pornography I am supposedly viewing, which I do not. Can you do anything to close these email accounts? All of the messages are from different authors with different email addresses. I keep thinking this will run its course and end but it has not. Thanks. Jim Woodburn

Ερώτηση από woodburnranch 1 έτος πριν

Τελευταία απάντηση από markwarner22 1 έτος πριν

  • Αρχειοθετήθηκε

Printing Barcodes via PDF Firefox

I use Firefox as my main browser for all my work, but when doing to print off my labels with barcodes the quality isn't great, I have compared this using Edge and Chrome … (διαβάστε περισσότερα)

I use Firefox as my main browser for all my work, but when doing to print off my labels with barcodes the quality isn't great, I have compared this using Edge and Chrome and you can really see the quality difference.

Has anyone else have this problem and is there a fix?

Thank you in advance. Pete

Ερώτηση από pete2007 1 έτος πριν

Τελευταία απάντηση από markwarner22 1 έτος πριν

Printing Failure

I have had a problem with printing of an app's full page. It will print all the pages but will not print some of the content. This has happened with a printer command and… (διαβάστε περισσότερα)

I have had a problem with printing of an app's full page. It will print all the pages but will not print some of the content. This has happened with a printer command and print screen. I've researched the problem through the online app's help page but was told I should switch to another browser. I didn't have this problem a couple of months back but suddenly have the problem with two different company app's. Any help would be appreciated.

Ερώτηση από dstrelka1 2 μήνες πριν

  • Αρχειοθετήθηκε

How to Detect When the Print Dialog is Closed

I would like to find a way to detect when the print dialog is closed in Firefox (whether the user clicks "Print" or "Cancel"). My goal is to automatically close the opene… (διαβάστε περισσότερα)

I would like to find a way to detect when the print dialog is closed in Firefox (whether the user clicks "Print" or "Cancel"). My goal is to automatically close the opened tab once the print dialog is dismissed.

Currently, I trigger the print dialog like this: var wdw = window.open(fileUrl, '_blank'); if (!wdw) {

   onError();
   return;

} setTimeout(function () {

   try {
       wdw.print();
   } catch (e) {
       onError();
   }

}, 100); However, I haven't found a reliable way to detect when the print dialog is closed so that I can close the tab accordingly.

In Chrome, I was able to achieve this by monitoring focus events and checking document.activeElement. This allowed me to determine when the print dialog was closed and automatically close the tab afterward. However, this approach does not seem to work in Firefox.

Is there a way to track when the print dialog is dismissed in Firefox?

Ερώτηση από yuliiashurekop 1 έτος πριν

Τελευταία απάντηση από markwarner22 1 έτος πριν

  • Αρχειοθετήθηκε

Firefox offered a cutePdf Writer printer to me. I did not take it. There was also a letter saying goodbye to my current Canon printer. I did not click on it.

My Canon printer disconnected from my computer after Firefox offered me CutePDF writer printing which I did not take. The drop down menu for printers under settings no lo… (διαβάστε περισσότερα)

My Canon printer disconnected from my computer after Firefox offered me CutePDF writer printing which I did not take.

The drop down menu for printers under settings no longer shows my Canon, only this Cute one.

Not Cute...Need to be able to print.

Connection to Zoom on this same desktop is not working right. The meeting flashes on and off. Ideas?

Thanks, Karen

Ερώτηση από pacifikaren 1 έτος πριν

Τελευταία απάντηση από markwarner22 1 έτος πριν

  • Αρχειοθετήθηκε

Can't keep pinned tabs

Firefox will not longer close without also closing my pinned tabs which pretty much defeats the purpose of pinning tabs for later and makes it much harder to keep track o… (διαβάστε περισσότερα)

Firefox will not longer close without also closing my pinned tabs which pretty much defeats the purpose of pinning tabs for later and makes it much harder to keep track of things. I didn't notice the first time and lost my pinned tabs that had been there for months, I immediately put them back but now everytime I try exiting firefox it informs me i'm about to close however many tabs are open + the pinned tabs. Does anyone know how to solve the problem/what might be causing it.

Ερώτηση από Lucifer 1 έτος πριν

Τελευταία απάντηση από an.beu 1 έτος πριν

  • Κλειδωμένο
  • Αρχειοθετήθηκε

Firefox Printing - remove Header and Footer options missing

Hello, After Firefox removed about:config option from Beta and Nightly, can you tell me how to remove Header and Footer when I print documents? I don't want to include UR… (διαβάστε περισσότερα)

Hello, After Firefox removed about:config option from Beta and Nightly, can you tell me how to remove Header and Footer when I print documents? I don't want to include URL, dates, times etc. but a clean document or file?

Ερώτηση από DDimitrov 1 έτος πριν

Τελευταία απάντηση από jonzn4SUSE 1 έτος πριν

  • Αρχειοθετήθηκε

Firefox unable to Print a PDF

Hello there, I'm a relatively new adopter of Firefox so please bear with me. First off let me say that my Brother Printer is working fine. Word documents as well as non-P… (διαβάστε περισσότερα)

Hello there,

I'm a relatively new adopter of Firefox so please bear with me.

First off let me say that my Brother Printer is working fine. Word documents as well as non-PDF documents print correctly and cleanly from 3rd party applications as well as Firefox. That is until I open up a PDF document and attempt to print it and see: "Printer in an error state." Clearing out the print cue and or restarting the printer, does nothing to resolve this issue.

See attached image from the printer cue.

Digging into my system (Windows 11) everything appears fine, drivers are up-2-date, and all other applications that can use the printer do so without issue. Briefly re-installing Chrome, I'm able to print the PDF without issue. Which strongly suggests that this is an issue native to the Firefox browser. Odds are if I'm seeing this issue, loads of other users are as well.

Looking forward to your replies.... Thank you in advance for your time and consideration.

-Kevin

Ερώτηση από Kevin Stonehouse 1 έτος πριν

Τελευταία απάντηση από markwarner22 10 μήνες πριν

  • Αρχειοθετήθηκε

Printing from Bank

When printing history from my bank account there are transactions missing in between pages and extra bank pages. The bank of course says it's the browser. it does it on E… (διαβάστε περισσότερα)

When printing history from my bank account there are transactions missing in between pages and extra bank pages. The bank of course says it's the browser. it does it on Edge as well. Please help

Ερώτηση από sbhproperty 1 έτος πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 έτος πριν