I demand that Claude Gohier may or may not have written...
> Because for non-US keyboads, the right alt key is used as a special
> key to get accented characters... So, we must use the left alt key,
> and both hands.
Since most apps see AltGr as Ctrl+Alt, try this patch.
If you don't have a build, you can use PatchMaker to apply the patch.
If you can't use PatchMaker, you can apply the patch manually:
1. Close Mozilla (this step stops me from testing the patch)
2. Unzip comm.jar
3. Edit platformNavigationBindings.xul and add the lines from the
attachment that begin with a + (but remove the +)
4. "Freshen" comm.jar
Index: platformNavigationBindings.xul
===================================================================
RCS file:
/cvsroot/mozilla/xpfe/browser/resources/content/win/platformNavigationBindings.xul,v
retrieving revision 1.11
diff -u -r1.11 platformNavigationBindings.xul
--- platformNavigationBindings.xul 2001/11/07 07:38:49 1.11
+++ platformNavigationBindings.xul 2001/12/17 16:44:24
@@ -8,6 +8,9 @@
Alt+Left arrow and Alt+Right arrow. -->
<key id="goBackKb" keycode="VK_LEFT" command="Browser:Back" modifiers="alt"/>
<key id="goForwardKb" keycode="VK_RIGHT" command="Browser:Forward"
modifiers="alt"/>
+ <!-- AltGr+arrow keystrokes for international keyboards -->
+ <key keycode="VK_LEFT" command="Browser:Back" modifiers="control,alt"/>
+ <key keycode="VK_RIGHT" command="Browser:Forward" modifiers="control,alt"/>
<!-- Supporting IE forward and back accelerators out of courtesy
to transitioning IE users -->