Ui.key.generalAccessKey: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
No edit summary
 
m (url changed: lxr -> mxr)
 
Line 14: Line 14:
Use the "Alt" key as the access key. (Default in Windows)
Use the "Alt" key as the access key. (Default in Windows)
===(Other)===
===(Other)===
All possible values are defined in <code>[http://lxr.mozilla.org/mozilla/source/dom/public/idl/events/nsIDOMKeyEvent.idl nsIDOMKeyEvent.idl]</code>, though they are listed there in hex (base 16) — you will need to convert the values to decimal (base 10).
All possible values are defined in <code>[http://mxr.mozilla.org/mozilla/source/dom/public/idl/events/nsIDOMKeyEvent.idl nsIDOMKeyEvent.idl]</code>, though they are listed there in hex (base 16) — you will need to convert the values to decimal (base 10).


==First checked in==
==First checked in==

Latest revision as of 18:58, 4 July 2012

Background

The key used to focus/activate various elements in Mozilla is determined by this preference. Until very recently, this preference affected both chrome and content-area elements.

Possible values and their effects

-1

Use ui.key.chromeAccess as the access key for chrome-area elements and ui.key.contentAccess as the access key for content-area elements. (Default in recent builds)

0

Disable the access key.

17

Use the "Ctrl" key as the access key. (Default in Mac OS X)

18

Use the "Alt" key as the access key. (Default in Windows)

(Other)

All possible values are defined in nsIDOMKeyEvent.idl, though they are listed there in hex (base 16) — you will need to convert the values to decimal (base 10).

First checked in

2002-05-08 by Aaron Leventhal

Has an effect in

  • Mozilla Suite (all versions since 1.1)
  • Mozilla Firefox (all versions)
  • SeaMonkey (all versions)

Related bugs

Related preferences

External links