Showing questions tagged: Show all questions

roblox

my laptop wont let me play Roblox on it it says i need to download the app i click that so it does downloads but it say an error on it and it is not the internet connecti… (read more)

my laptop wont let me play Roblox on it it says i need to download the app i click that so it does downloads but it say an error on it and it is not the internet connection. please help i want to play so please write back.

Asked by Nick_MK 3 months ago

Last reply by Eric Robertson 3 months ago

Cannot print from Firefox

Hey all, I'm hoping someone can help me. I have found no answers online to date. I cannot print from the Firefox browser. When I click the print button, my printer spit… (read more)

Hey all, I'm hoping someone can help me. I have found no answers online to date.

I cannot print from the Firefox browser. When I click the print button, my printer spits out a blank page.

I can print from any other browser, Word, Excel, PDF files, anything except for Firefox. This may not be as much of an issue if Firefox wasn't my primary browser, so when I start doing work on it and find I need to print something at the end, it's a problem.

My printer software is up-to-date, I tried resetting the printing preference to default (assuming I did this correctly), and I even uninstalled and re-installed Firefox (which was a disaster). None of this helped.

Is there one of you who may be able to provide me with the help I need?

I appreciate your effort greatly.

Asked by Gary Kelly 3 months ago

Last reply by jonzn4SUSE 3 months ago

How can I change the default destination folder when printing an email to PDF

When I print an email to PDF the default folder destination is stuck on this one non existent folder. I can change the destination, but the next time I do this the defaul… (read more)

When I print an email to PDF the default folder destination is stuck on this one non existent folder. I can change the destination, but the next time I do this the default has reverted. I save a lot of emails this way & this new development is not only costing me time but is aggravating as can be. Before this situation developed the defalt destination would be the last folder I saved to. That is what I want to get back to. Anyone have a suggestion?

Asked by willban1 3 months ago

Last reply by Semen Lobachevskiy 3 months ago

Firefox requires a master password every time it starts up.

Good afternoon. Since recently (probably after the last Firefox update to version 136.0) I have a problem: every time I start Firefox it requires the main password set in… (read more)

Good afternoon. Since recently (probably after the last Firefox update to version 136.0) I have a problem: every time I start Firefox it requires the main password set in the settings. Before this problem did not occur, no settings were changed.

I read the official article on this topic, but the recommendations described there did not help me. I turned off the password, logged out of the browser, turned it back on, logged out again, and nothing. When I turned it back on, still at every startup it asked for the password.

I also noticed that every time I start it up, the loading circle next to the cursor spins, like something is happening. Can you tell me what it could be and how to get rid of this problem?

OS: Windows 11 24H2.

Asked by nik.dobshikov 3 months ago

Last reply by TyDraniu 3 months ago

New Password Requirement to open Firefox

With update 136.0, FF is requiring us to use a master password. I have one already set so my data is protected. I do not need a master password to open FF, but now I do. … (read more)

With update 136.0, FF is requiring us to use a master password. I have one already set so my data is protected. I do not need a master password to open FF, but now I do.

STOP THIS MADNESS

Asked by Brian Donaldson 3 months ago

Last reply by TyDraniu 3 months ago

e-mail

I have an Epsom printer xp-2205 it will not e-mail any thing, instead I get a message to create an association in the default programs control panel. can any body help me… (read more)

I have an Epsom printer xp-2205 it will not e-mail any thing, instead I get a message to create an association in the default programs control panel. can any body help me to do that or is there an e-mail program i can install that will do that I am 82 next month and wee bit rusty thank you

Asked by gmcintyre 3 months ago

Last reply by markwarner22 3 months ago

Firefox will not print directly from website

I tried to print directly from a website, but it will not print. If I print an image or PDF, it will print just fine. I am currently using Firefox 135.0.1 on a macOS Sequ… (read more)

I tried to print directly from a website, but it will not print. If I print an image or PDF, it will print just fine. I am currently using Firefox 135.0.1 on a macOS Sequoia 15.3.

Asked by info12649 3 months ago

Last reply by markwarner22 3 months ago

Extremely slow to print a page

When printing the same page repeatedly, FF gets increasingly slower and slower each time until it is downright ridiculously slow and takes up to a minute, perhaps more, t… (read more)

When printing the same page repeatedly, FF gets increasingly slower and slower each time until it is downright ridiculously slow and takes up to a minute, perhaps more, to get to the print menu. However, if you reload the page, printing is instantaneous (at least for the first or second time). Some history or memory management problems?

FF Version 135.0 (64-bit) on MacBook Pro Sequoia 15.3.1

One test case would be https://api.razzlepuzzles.com/cryptogram. Keep selecting New Game from the pull-down menu on the right and try printing as PDF (or anything else).

Asked by George Mathiowitz 4 months ago

Last reply by markwarner22 4 months ago

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… (read more)

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.

Asked by Lucifer 4 months ago

Last reply by an.beu 4 months ago

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… (read more)

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

Asked by sbhproperty 4 months ago

Last reply by jscher2000 - Support Volunteer 4 months ago

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… (read more)

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?

Asked by yuliiashurekop 4 months ago

Last reply by markwarner22 4 months ago

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 l… (read more)

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

Asked by pacifikaren 4 months ago

Last reply by markwarner22 4 months ago

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 … (read more)

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

Asked by pete2007 4 months ago

Last reply by markwarner22 4 months ago