Firefox adds a char(10) to cell content under repeatable conditions in google sheets. Does not happen with chrome.
This was first reported here original post and verified by Mchall and me. The issue arises with the following steps find a cell with text (not formula) place the cu… (tuilleadh eolais)
This was first reported here original post and verified by Mchall and me.
The issue arises with the following steps
find a cell with text (not formula) place the cursor in the edit line (formula bar) backspace to remove all of the text type in new text hit enter
A new line, char(10) is inserted after the text. Confirmed with a find function.
It did this with Firefox but not Chrome. Reported in Google sheets forum title "Why are line breaks being added to cells randomly" Can't see how to add link here.
Informed that my Mozilla was updated, I was asked to sign up for Firefox. Is there a chat with support so I can locate what it is that is involved?
When I opened up Mozilla this am, the screen went to notice that I was updated, and would I like to sign up for Firefox. I scanned the offerings, and assumed all the info… (tuilleadh eolais)
When I opened up Mozilla this am, the screen went to notice that I was updated, and would I like to sign up for Firefox. I scanned the offerings, and assumed all the info would be there when I hit next. It went to signup right away, I confirmed my email, but what is available to me seems scattered in different place; in fact, I'm confused with being Mozilla signed up, and now Firefox. I was hoping you had a chat support so I could be directed to easier understanding.
Firefox Gaming Browser? Sometime?
Will be?
The sound notification has stopped working when search token not found
i am using an iMac 27" with MacOS Catalina 10.15.1. Today I noticed that when I search a website for an unique token (as an example, 1234), and the token is not found th… (tuilleadh eolais)
i am using an iMac 27" with MacOS Catalina 10.15.1. Today I noticed that when I search a website for an unique token (as an example, 1234), and the token is not found the search window turns red but the sound no longer is used. Notices from Outlook and Chrome work fine.
Any thoughts? I ndo a ot of searches and the audio notification was a great way to get my attention.
Google Hangouts Stopped working with Firefox
Very suddenly, Google Hangouts no longer works with Firefox, as of the evening of June 11th. I tried Firefox add-ons but they don't work. I can open Google Hangouts page,… (tuilleadh eolais)
Very suddenly, Google Hangouts no longer works with Firefox, as of the evening of June 11th. I tried Firefox add-ons but they don't work. I can open Google Hangouts page, but cannot use the messaging utility. I used it for years until last night. Apparently, a plug-in is missing or doesn't work.
Can’t open Firefox in Mac OS 10.15. Error message saying it is not supported.
My computer auto-upgraded to Mac OS Catalina 10.15. When I try to run Firefox, I receive an error message that the application is not supported by OS 10.15. I’ve downlo… (tuilleadh eolais)
My computer auto-upgraded to Mac OS Catalina 10.15. When I try to run Firefox, I receive an error message that the application is not supported by OS 10.15. I’ve downloaded the latest version of Firefox. Any suggestions?
Why is my XSL file no longer being applied to my XML file?
This morning Firefox upgraded to version 68.0 and several XML files that each reference a corresponding XSL file stopped loading as they always have. One example follows:… (tuilleadh eolais)
This morning Firefox upgraded to version 68.0 and several XML files that each reference a corresponding XSL file stopped loading as they always have. One example follows:
The file ASTest_Appl_Events..xml contains the following
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="ASTest_Appl_Events.xsl"?> <ASTestApplEvents> <Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'><System><Provider Name='Report Server Windows Service (MSSQLSERVER)'/><EventID Qualifiers='0'>107</EventID><Level>2</Level><Task>5</Task><Keywords>0x80000000000000</Keywords><TimeCreated SystemTime='2019-07-08T10:01:35.000000000Z'/><EventRecordID>270493</EventRecordID><Channel>Application</Channel><Computer>ASTest</Computer><Security/></System><EventData><Data>Report Server Windows Service (MSSQLSERVER)</Data></EventData></Event> <Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'><System><Provider Name='Microsoft-Windows-User Profiles Service' Guid='{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}'/><EventID>1530</EventID><Version>0</Version><Level>3</Level><Task>0</Task><Opcode>0</Opcode><Keywords>0x8000000000000000</Keywords><TimeCreated SystemTime='2019-07-08T10:00:10.973301100Z'/><EventRecordID>270438</EventRecordID><Correlation/><Execution ProcessID='848' ThreadID='524'/><Channel>Application</Channel><Computer>ASTest</Computer><Security UserID='S-1-5-18'/></System><EventData Name='EVENT_HIVE_LEAK'><Data Name='Detail'>1 user registry handles leaked from \Registry\User\S-1-5-21-659900985-4002748794-950523200-1002: Process 300 (\Device\HarddiskVolume3\Windows\System32\conhost.exe) has opened key \REGISTRY\USER\S-1-5-21-659900985-4002748794-950523200-1002\Control Panel\International </Data></EventData></Event> </ASTestApplEvents>
The file ASTest_Appl_Events.xsl contains:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:MSEvent="http://schemas.microsoft.com/win/2004/08/events/event"> <xsl:template match="/"> <html> <body> <title>ASTest Appl Events</title> <table><tr> <td><h3>ASTest Application Events</h3></td> <td width="100"> </td> </tr></table> <table border="1" style="border-collapse:collapse;font-size:14px;" cellpadding="4"> <tr bgcolor="black" style="color:white"> <td>Server</td> <td>Event Type</td> <td>Provider</td> <td>Event ID</td> <td>Time (Mar-Oct subtract 4 hours, Nov-Feb subract 5 hours)</td> <td>Level</td> <td>Event Data</td> <td>User Data</td> </tr> <xsl:for-each select="ASTestApplEvents/MSEvent:Event"> <xsl:sort select="MSEvent:System/MSEvent:TimeCreated/@SystemTime" order="descending" /> <tr bgcolor="lightgray"> <td><xsl:value-of select="MSEvent:System/MSEvent:Computer"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:Channel"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:Provider/@Name"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:EventID"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:TimeCreated/@SystemTime"/></td> <xsl:choose> <xsl:when test="MSEvent:System/MSEvent:Level=1"> <td style="color:orange;">CRITICAL<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:when test="MSEvent:System/MSEvent:Level=2"> <td style="color:red;">ERROR<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:when test="MSEvent:System/MSEvent:Level=3"> <td style="color:green;">WARNING<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:otherwise> <td>(<xsl:value-of select="MSEvent:System/MSEvent:Level"/>)</td> </xsl:otherwise> </xsl:choose> <td><xsl:for-each select="MSEvent:EventData/MSEvent:Data"> <img src="Blue_dot(sm).jpg"/> <strong><em><xsl:value-of select="./@Name"/>:</em></strong> <xsl:value-of select="."/><br></br> </xsl:for-each></td> <td><xsl:for-each select="MSEvent:UserData"> <img src="Blue_dot(sm).jpg"/> <strong><em><xsl:value-of select="./@Name"/>:</em></strong> <xsl:value-of select="."/> </xsl:for-each></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
Screen shots of what I used to see (html generated by an Online XSL Transformer) and currently see are attached.
Any assistance would be appreciated.
Thanks, Kurt H
Firefox is making multiple processes again
Once again, Firefox is making multiple processes in the task manager. I've already set both browser.tabs.remote.autostart.2 and browser.tabs.remote.autostart to false, ye… (tuilleadh eolais)
Once again, Firefox is making multiple processes in the task manager. I've already set both browser.tabs.remote.autostart.2 and browser.tabs.remote.autostart to false, yet I still have multiple processes anyway, and setting the content process limit to 1 doesn't seem to do anything. I'm using Firefox version 68.0 and running Window 7.
Add names to existing group e-list?
Want to add new contact to an existing e-list
Adobe Flash settings
I am having a problem where suddenly Firefox won't remember that I told it to run flash on a website. There was previously the option to remember that decision and now t… (tuilleadh eolais)
I am having a problem where suddenly Firefox won't remember that I told it to run flash on a website. There was previously the option to remember that decision and now that's gone today for no reason. Removing that option is why I quit using Chrome when the great corporate beast decided for me that I shouldn't be able to conveniently use flash any more because they didn't like it. Is this the same thing happening here or is this a bug?
After Quantum 69.0 upgrade it no longer lists my home network printer all other apps list it
I upgraded to Quantum 69.0 64 bit a day or two ago. Today I have discovered that when I go to print a web page from FF, it does not list my home network printer as a cho… (tuilleadh eolais)
I upgraded to Quantum 69.0 64 bit a day or two ago. Today I have discovered that when I go to print a web page from FF, it does not list my home network printer as a choice. I tested other apps, e.g. Chrome and MS Word and Adobe Rdr, they all still show my home network printer in their printer list, and I was able to print to it from Chrome. I have powercycled my printer, and rebooted my WIN7 PC, no help. My home network printer lists as Canon MF4270 Daves Office. My email is daveryan.cincinnati@gmail.com
WHY, can't I get a straight answer to my questions, All I get is Community support.
I have tried over a dozen times to change my (according to you) PRIMARY EMAIL ADDRESS. My primary (according to mozilla) is [REDACTED BY MODERATOR]. I would like to tel… (tuilleadh eolais)
I have tried over a dozen times to change my (according to you) PRIMARY EMAIL ADDRESS. My primary (according to mozilla) is [REDACTED BY MODERATOR]. I would like to tell whoever answers this, THEY ARE WRONG. The previous email is just an "ADD-ON". To my mind, MY PRIMARY EMAIL ADDRESS IS:- [REDACTED BY MODERATOR]. I do not know where you got the gmail address from, it is very rare I use it, except in answering your non-existant, technicians. WHY? Do you only use volunteers to get people like me sorted out???? What is wrong with employing people that have been trained to sort out this type of problem. When ever I click on "CONTACT US", all there is, is a list similar to that which led to that page? There are NO LINKS that take me where I want to go, not where YOU want me to go. I am 71 next month, and I NEED SPECIFIC instructions as to what I have to do. I have had a computer eversince the AMIGA 500. So I do need help to sort out what I want, NOT, as you keep saying, I must have what YOU want. If you cannot sort this out, I will be going elsewhere. I have used firefox for bloody decades. This could be ending anytime soon. I am totally fed-up with your website, beloaw are three pictures to explain what I need.
[Personal information removed by moderator. Please read Forum rules and guidelines, thanks.]
Adobe flash will not remain active on our 24h emergency medical web site, need it to alert us to medical data
We have medical data coming in 24/7. Our alarm runs off flash. Since the update there isn't a choice to "allow and remember", which is causing us to have to remember to… (tuilleadh eolais)
We have medical data coming in 24/7. Our alarm runs off flash. Since the update there isn't a choice to "allow and remember", which is causing us to have to remember to refresh the page constantly. A big problem for the night-staff, problem for the day-staff also as we keep forgeting and data is not alarming. PLEASE HELP!!
Firefox signs out each time computer is shut down
I added firefox a couple weeks ago and everytime I shut down my laptop, I have to log back into firefox as well as reconfigure my settings. It does not do this on my pho… (tuilleadh eolais)
I added firefox a couple weeks ago and everytime I shut down my laptop, I have to log back into firefox as well as reconfigure my settings. It does not do this on my phone, what is the reason for this?
Sorry. We’ve locked your account. The confirmation email we sent to ******** was returned and we’ve locked your account to protect your Firefox data
couldnt log in "Sorry. We’ve locked your account. The confirmation email we sent to ******** was returned and we’ve locked your account to protect your Firefox data" … (tuilleadh eolais)
couldnt log in "Sorry. We’ve locked your account. The confirmation email we sent to ******** was returned and we’ve locked your account to protect your Firefox data"
I can't re-add addons, that I removed from the toolbar, back to the toolbar.
So when I right-clicked an extension (add-on) and I removed it from the toolbar, I don't know how to get the extension/add-on back to the toolbar.
how to display roboform on firefox
I have added Roboform to the addins, but unable to locate the logo on the screen.
Lost passwords
I opened up the browser this morning and all my saved passwords were gone. Anyway I can get them back?
my Firefox account is locked how to unlock it ?
i tried to sign to my Firefox account i put the password correctly , they send me conformation code to my email but my email was blocked as it hasn't been used for long t… (tuilleadh eolais)
i tried to sign to my Firefox account i put the password correctly , they send me conformation code to my email but my email was blocked as it hasn't been used for long time , i reactivate it ,i tried to sign again to my Firefox account but they told me its locked as there conformation email was sent back ,so how to unlock it pleas ?
Copy and paste do not work on address bar
I commonly copy a web address to share with someone or to save in a document. I have a Macbook and neither the shortcut keys or your edit keys work to copy or paste. Th… (tuilleadh eolais)
I commonly copy a web address to share with someone or to save in a document. I have a Macbook and neither the shortcut keys or your edit keys work to copy or paste. This is a MUST for me and I find it very weird it doesn't work, its a basic set of commands.