Press ALTGR
Moderators: JRL, Dorian (MJT support)
Press ALTGR
Would you please explain following keyboard commands
Press ALTGR,
Release ALTGR?
What exactly does ALTGR stand for?
Thanks.
Armstrong Wong
Hong Kong
Press ALTGR,
Release ALTGR?
What exactly does ALTGR stand for?
Thanks.
Armstrong Wong
Hong Kong
Hi Armstrong,
The ALTGR key can be used as an equivalent of the combined keys CTRL+ALT. Try it by assigning a hotkey "CTRL+ALT+" to a MSched script, and use ALTGR+" afterwards.
It's main use is to be able to use a third function wich is assigned to a single key (e.g. the "\" on a German keyboard). We both know ...
BTW: ALTGR+DEL won't work on my box to replace CTRL+ALT+DEL
Ernest
The ALTGR key can be used as an equivalent of the combined keys CTRL+ALT. Try it by assigning a hotkey "CTRL+ALT+" to a MSched script, and use ALTGR+" afterwards.

It's main use is to be able to use a third function wich is assigned to a single key (e.g. the "\" on a German keyboard). We both know ...

BTW: ALTGR+DEL won't work on my box to replace CTRL+ALT+DEL

Ernest
Hi Ernest,
Thanks for your prompt reply espeically on Sunday. Your "insider" knowledge on Macro Scheduler is exceedingly impressive. None of the available documents could provide the details you are very kind enough to share with us. The connection between ALTGR and CTRL + ALT is beyond my imagination. Of course, I was wondering why CTRL+ALT was missing from the keyboard commands.
FYI, Chinese character input doesn't require CTRL+ALT.
Cheers,
Armstrong
Hong Kong
Thanks for your prompt reply espeically on Sunday. Your "insider" knowledge on Macro Scheduler is exceedingly impressive. None of the available documents could provide the details you are very kind enough to share with us. The connection between ALTGR and CTRL + ALT is beyond my imagination. Of course, I was wondering why CTRL+ALT was missing from the keyboard commands.
FYI, Chinese character input doesn't require CTRL+ALT.
Cheers,
Armstrong
Hong Kong
ALT-GR appears on the right of my keyboard. It is the right hand alt key.
MJT Net Support
[email protected]
[email protected]
Let's say that Support is correct in stating ALTGR is meant for right-hand ALT. Then, it leads to 2 questions:
1. Which keyboard command is intended for left-hand ALT?
2. How can we simulate CTRL + ALT?
Technically, left- and right-hand ALT keys generate different keycodes. How about the left- and right-hand Window keys?
BTW, does Macro Scheduler support all virtual keys listed on
http://msdn.microsoft.com/library/defau ... ycodes.asp? How?
FYI, http://msdn.microsoft.com/library/psdk/ ... s_529f.htm listed in Command_ref_7.1.pdf (page 35) was discontinued a long time ago.
Cheers,
Armstrong Wong
Hong Kong
1. Which keyboard command is intended for left-hand ALT?
2. How can we simulate CTRL + ALT?
Technically, left- and right-hand ALT keys generate different keycodes. How about the left- and right-hand Window keys?
BTW, does Macro Scheduler support all virtual keys listed on
http://msdn.microsoft.com/library/defau ... ycodes.asp? How?
FYI, http://msdn.microsoft.com/library/psdk/ ... s_529f.htm listed in Command_ref_7.1.pdf (page 35) was discontinued a long time ago.
Cheers,
Armstrong Wong
Hong Kong
Hi folks,
the main words of the following description are seems to be d'alternate Graphics. Isn't it nice to know! Rgds, Ernest.
/alt-G-R/ np.
[KEY] Abrév. d'alternate Graphics. Nom de la touche du clavier étendu des PC, située àdroite de la barre d'espace, et qui simule l'appui simultané de control et d'alt, qui permettait, àl'origine, d'obtenir des caractères graphiques (e.g. bordures de tableau), et qui donne accès maintenant àtoutes sortes de caractères spéciaux.
the main words of the following description are seems to be d'alternate Graphics. Isn't it nice to know! Rgds, Ernest.
/alt-G-R/ np.
[KEY] Abrév. d'alternate Graphics. Nom de la touche du clavier étendu des PC, située àdroite de la barre d'espace, et qui simule l'appui simultané de control et d'alt, qui permettait, àl'origine, d'obtenir des caractères graphiques (e.g. bordures de tableau), et qui donne accès maintenant àtoutes sortes de caractères spéciaux.
Hi Ernest,
Thanks for your discovery. Could you kindly translate the French note?
Many, many, many thanks.
Cheers,
Armstrong Wong
Hong Kong
Thanks for your discovery. Could you kindly translate the French note?
Forgive my verboseness, how could we code keyboard command to simulate CTRL + ALT? How can send keyboard scancode in Macro Scheduler script?[KEY] Abrév. d'alternate Graphics. Nom de la touche du clavier étendu des PC, située àdroite de la barre d'espace, et qui simule l'appui simultané de control et d'alt, qui permettait, àl'origine, d'obtenir des caractères graphiques (e.g. bordures de tableau), et qui donne accès maintenant àtoutes sortes de caractères spéciaux.
Many, many, many thanks.
Cheers,
Armstrong Wong
Hong Kong
OK,nun für die Deutschen/now for the Germans.
AltGr
andere Bezeichnung: keine
AltGr ist die Abkürzung für Alternative graphische Belegung.
Ruft die Drittbelegung der Tasten auf.
Drittbelegungen sind z. B.:
@ = AltGr + Q
µ = AltGr + M
€ = AltGr + E
{ = AltGr + 7
Quelle: http://www.borkpc.de/lex/1a.php
Ernest
Hi Armstrong,
the french text describes the same as it's already said in the previous postings.
AltGr is the abbreviation for: alternative graphical assignment
calls a third function wich is assigned to a key.
Sample: "@ = AltGr+Q" (German keyboard layout)
looks MSched coded like this ...
if the German keyboard layout is set, it should create the @-sign 
AltGr
andere Bezeichnung: keine
AltGr ist die Abkürzung für Alternative graphische Belegung.
Ruft die Drittbelegung der Tasten auf.
Drittbelegungen sind z. B.:
@ = AltGr + Q
µ = AltGr + M
€ = AltGr + E
{ = AltGr + 7
Quelle: http://www.borkpc.de/lex/1a.php
Ernest
Hi Armstrong,
the french text describes the same as it's already said in the previous postings.

AltGr is the abbreviation for: alternative graphical assignment
calls a third function wich is assigned to a key.
Sample: "@ = AltGr+Q" (German keyboard layout)
looks MSched coded like this ...
Code: Select all
Press CTRL
Press Alt
Send>q
Release Alt
Release CTRL
