Zobrazenie otázok označených: Zobraziť všetky otázky

Changes after updates

After the last couple of Firefox updates, my settings have been automatically changed. This has not happened until recently How can I stop Firefox from changing my settin… (ďalšie informácie)

After the last couple of Firefox updates, my settings have been automatically changed. This has not happened until recently How can I stop Firefox from changing my settings when it updates? OS is Windows 11. TYIA!

Otázku položil(a) percep-tionspecialist Pred 3 dňami

Posledná odpoveď od jonzn4SUSE Pred 2 dňami

Firefox File Upload Dialog Box hidden right-click context menu options

When I am trying to upload a file to any website in Firefox the right click context menu options are all missing. I have tried a new profile, troubleshoot mode, seems lik… (ďalšie informácie)

When I am trying to upload a file to any website in Firefox the right click context menu options are all missing. I have tried a new profile, troubleshoot mode, seems like nothing fixes it. Other browsers work like intended so I know it is Firefox internal

Otázku položil(a) travis_brown666 Pred 3 dňami

Posledná odpoveď od jonzn4SUSE Pred 2 dňami

Syncing with iCloud calendars.

Please tell me how to sync my Thunderbird calendar to pass my appointments to my iPad/iPhone running ios18.1.1. It used to work for iOS 17. I am using the current Thunder… (ďalšie informácie)

Please tell me how to sync my Thunderbird calendar to pass my appointments to my iPad/iPhone running ios18.1.1. It used to work for iOS 17. I am using the current Thunderbird edition.

Otázku položil(a) Stephen Halsey Pred 5 mesiacmi

Posledná odpoveď od Jim Candela Pred 3 dňami

How to completly remove buildt in AI in Firefox

It nags me, that I ain't asked if I want the AI function, you just force it over me without giving me any choice, if I want it.. SO, how to COMPLETELY remove the AI fun… (ďalšie informácie)

It nags me, that I ain't asked if I want the AI function, you just force it over me without giving me any choice, if I want it..

SO, how to COMPLETELY remove the AI function in Firefox and Linux Ubuntu..

AI scare me and I definitely don't want ANY of it!!!

Otázku položil(a) Linnes firefox konto Pred 3 dňami

Posledná odpoveď od Nightmares Pred 3 dňami

new option

I love firefox from mozilla, I saw that in secret settings of firefox nightly version there is option of new menu design and navigation toolbar which I liked and I liked … (ďalšie informácie)

I love firefox from mozilla, I saw that in secret settings of firefox nightly version there is option of new menu design and navigation toolbar which I liked and I liked it so much that I can give 5 out of 5 or more for this, please release these options in firefox stable as soon as possible, and also add hindi language in inbuild translator, thanks, iam Tarachand, a very old user of firefox.

Otázku položil(a) tara556611 Pred 3 dňami

Posledná odpoveď od Paul Pred 3 dňami

How to configure Send to > email recipient to use Thunderbird in Windows 11

Thunderbird is set as the default email client, and clicking "mailto" links on web pages and in Word aor PDF documents works just the way it should. However, the right-c… (ďalšie informácie)

Thunderbird is set as the default email client, and clicking "mailto" links on web pages and in Word aor PDF documents works just the way it should.

However, the right-click context menu "Send to > email recipient" insists on using Outlook. I've seen a number of threads on this topic, but no definitive solution. This used to be so simple back in Windows 7, but Microsoft seems to have made it much more difficult -- or impossible -- to properly configure this setting.

Otázku položil(a) Luminary99 Pred 3 dňami

Posledná odpoveď od david Pred 3 dňami

XML Parsing Error: undefined entity

Hi all, I have misconfigured my email server account in Thunderbird and need to go back and change it. However, when I do, I'm presented with this error: XML Parsing E… (ďalšie informácie)

Hi all,

I have misconfigured my email server account in Thunderbird and need to go back and change it. However, when I do, I'm presented with this error:

XML Parsing Error: undefined entity Location: chrome://messenger/content/am-server.xhtml Line Number 171, Column 21: <menuitem </p>


^

And I'm unable to make the correction. I'm running Thunderbird 128.3.0esr (64-bit) and do not have Chrome installed at all.

What can I do to fix this?

Mike.

Otázku položil(a) Mike's Workstation Pred 4 dňami

Posledná odpoveď od christ1 Pred 3 dňami

Wo finde ich ein Feld zum Eingeben oder festlegen meiner gewünschten '''''''Signatur" ''''am Ende der geschriebenen Email?

Anfrage an Thunderbird Help wegen Signaturtext festlegen, wo geht das ?? Subject Hilfe erwünscht wegen Signalurtext eingeben Wo finde ich ein Feld zum Eingeben ode… (ďalšie informácie)

Anfrage an Thunderbird Help wegen Signaturtext festlegen, wo geht das ??

Subject Hilfe erwünscht wegen Signalurtext eingeben

Wo finde ich ein Feld zum Eingeben oder festlegen meiner gewünschten '''''''Signatur" ''''am Ende der geschriebenen Email. Doch dieses Feld ist jetzt gedimmt und ich kann nichts eintragen.


meine gültige Email Adresse ist: [email removed]@actana.de

Jedoch nicht [email removed]@hotmail.com die ist alt und obsolet

Otázku položil(a) helmut441 Pred 5 mesiacmi

Posledná odpoveď od Wayne Mery Pred 5 mesiacmi

Webassembly.compile() doesn't support SharedArrayBuffer in 138

Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (ďalšie informácie)

Hello,

as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.


--- index.html --- <title>Example</title> <script> let instance = undefined; async function loadWasm() { try { const response = await fetch('./sum.wasm'); const buffer = await response.arrayBuffer(); const sharedBuffer = new SharedArrayBuffer(buffer.byteLength); const tmpView = new Uint8Array(sharedBuffer); tmpView.set(new Uint8Array(buffer)); const module = await WebAssembly.compile(sharedBuffer); instance = await WebAssembly.instantiate(module); } catch (error) { alert(`failed to compile in wasm: ${error.message}`); } } loadWasm(); function testWasm() { if (instance) alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`); else alert('invalid instance, failed to compile'); } </script> <button onclick="testWasm()">Press to run wasm function (sum)</button> --- ---

--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---

Otázku položil(a) Fra Pred 6 dňami

Posledná odpoveď od TyDraniu Pred 6 dňami

Adding Contacts in Tb 138

How do I add Contacts to Thunderbird Desktop Version 138.0? I can fill all of the fields, however, my attempts at doing a SAVE have all failed. The SAVE button is probabl… (ďalšie informácie)

How do I add Contacts to Thunderbird Desktop Version 138.0? I can fill all of the fields, however, my attempts at doing a SAVE have all failed. The SAVE button is probably there, however, it is hidden and I cannot move to that location. Older versions had the same problem. Can you pull the SAVE button to the left side of the column it resides in?

Otázku položil(a) Jesse Glessner Pred 1 týždňom

Posledná odpoveď od sfhowes Pred 1 týždňom