Join the AMA (Ask Me Anything) with Firefox leadership team to talk about Firefox priorities in 2024. Mark your calendar! Thursday, June 13, 17:00 - 19:00 UTC.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

key code for inferior character in a .xul file

  • 1 réponse
  • 1 a ce problème
  • 13 vues
  • Dernière réponse par guigs

more options

Hi,

In a .xul file I want to add a keyboard shortcut : "CTRL+<"

I found keycode="VK_OEM_102" it works fine but it interacts with other keys like "CTRL+C" .


   <keyset id="focuslasttab-keyset">
      <key id="focuslasttab-key" modifiers="control" keycode="VK_OEM_102" command="focuslasttab-command" />
   </keyset>

I tried ---- key="<" ---- but it doesn't work.

Do you know how to implement this shortcut ? "CTRL+<"

Thank you very much.

Hi, In a .xul file I want to add a keyboard shortcut : "CTRL+<" I found keycode="VK_OEM_102" it works fine but it interacts with other keys like "CTRL+C" . <keyset id="focuslasttab-keyset"> <key id="focuslasttab-key" modifiers="control" keycode="VK_OEM_102" command="focuslasttab-command" /> </keyset> I tried ---- key="<" ---- but it doesn't work. Do you know how to implement this shortcut ? "CTRL+<" Thank you very much.

Toutes les réponses (1)

more options

Hi schmurtz,

I am not sure what kind of keyboard you are using, but could it possibly be an issue that the < key is also , by default. Would it have to be ctrl + shift + < ?

For more information : MDN Keyboard Shortcuts or please check out http://stackoverflow.com/search?q=firefox

Modifié le par guigs