ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: Alt-Tab with AltGr-.

<< < (4/5) > >>

tomos:
If above is true, only solution is to avoid the third key (shift key)

This works:


--- Code: Autohotkey --->!k::AltTab>!p::ShiftAltTab
so that's
AltGr+k for AltTab
AltGr+p for ShiftAltTab

works well enough here in terms of ease of use

_______________________
EDIT/ I thought the L version of AHK was unicode?
It wont recognise the vowels with umlauts:


--- Code: Autohotkey --->!ö::AltTab>!ü::ShiftAltTab---------------------------
Line Text: >!�ltTab
Error: This line does not contain a recognized action.
---------------------------

jgpaiva:
I think the problem is -
using the Shift key changes the "." key.
On my keyboard (German) it changes it to ":"
which is going to totally screw with any combination, well, especially this one :):
-tomos (July 12, 2012, 04:44 AM)
--- End quote ---
Oh! You're probably right :)
Does this work?

--- --->!:::ShiftAltTab

me_7834539:
no, >!:::ShiftAltTab does not work, but I think this is not really such an important feature, and it can be implemented with an additional key that ideally is near to the "dot key".
thanks again!!!

tomos:
Does this work?

--- --->!:::ShiftAltTab
-jgpaiva (July 12, 2012, 06:00 AM)
--- End quote ---

that gets a different error again:
---------------------------
Error at line 2.

Line Text: :ShiftAltTab
Error: This line does not contain a recognized action.
---------------------------

So it seems to be (possibly) two combinations that refuse to work as hotkeys:


* 1. combination of three keys
* 2. combination of Shift (and another qualifier key) and a key with two different characters e.g. :/;
maybe some AHK expert could confirm which one is the problem (or both) ?

jgpaiva:
nope, I think it's a totally different problem. The error is that ":ShiftAltTab" is an unrecognized action. This indicates that the parser is identifying the first "::" as the hotkey delimiter, and using the last ":" as part of the action.
Hence, one of these might work:

--- --->!: ::ShiftAltTab
:>!::ShiftAltTab

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version