Avatar for Username

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

Learn More

Disable F11

  • 5 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 399 ნახვა
  • ბოლოს გამოეხმაურა cor-el

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

გადაწყვეტა შერჩეულია

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');}
პასუხის ნახვა სრულად 👍 1

ყველა პასუხი (5)

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

შერჩეული გადაწყვეტა

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');}

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.

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!

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).