Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

Disable F11

  • 5 Antworten
  • 1 hat dieses Problem
  • 429 Aufrufe
  • Letzte Antwort von cor-el

more options

Hello,

is it possible to disable F11 key for enabling disabling full screen or set it to another combination like Alt + F11? My problem is, that i am using citrix html 5 client in firefox. Within the citrix session there is a terminal application where F11 is a special key which is needed. But unfortunatly whenever i use it also Firefox switches the full screen and then the citrix client adjusts the resolution which durates a few seconds. And thats really annoying. Using another key in the terminal application is not possible. The APplication uses F1 - F24 by double using the F1-F12 Keys.

regards

Hello, is it possible to disable F11 key for enabling disabling full screen or set it to another combination like Alt + F11? My problem is, that i am using citrix html 5 client in firefox. Within the citrix session there is a terminal application where F11 is a special key which is needed. But unfortunatly whenever i use it also Firefox switches the full screen and then the citrix client adjusts the resolution which durates a few seconds. And thats really annoying. Using another key in the terminal application is not possible. The APplication uses F1 - F24 by double using the F1-F12 Keys. regards

Ausgewählte Lösung

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console.

This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.


doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}
Diese Antwort im Kontext lesen 👍 1

Alle Antworten (5)

more options

Keyboard assignments are based on the O/S and only the O/S can change those settings if permitted.

more options

Ausgewählte Lösung

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console.

This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.


doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}
more options

WestEnd said

Keyboard assignments are based on the O/S and only the O/S can change those settings if permitted.

Unfortunatly no. This key assignment is not driven by os. It is driven by firefox itself. I used Vivaldi on linux to test this. In Vivaldi you can disable full screen which also defaults to F11. There i have no more problem in my use case.

more options

cor-el said

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console. This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.
doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}

Thank you cor-el, your tip works like expected. I tested it in Firefox 66.0.3.

It is a bit clumsy as you have to repeat that every time, of course. But thank you anyway!

more options

The Browser Console preserves its command line history, so you can us the cursor Up key to recall previously entered code (i.e. it shouldn't be necessary to paste the code each time you need it).