|
me_7834539
|
 |
« on: July 11, 2012, 10:03:10 AM » |
|
Hello, I know of skwire's AltEdge (and variations thereof), and I wanted to suggest that alt-tab behavior be easily accesible from the touchpad region, even without mouse gestures etc. This could be done by using AltGr in combination with "." (dot) since these two keys are very easily/ergonomically accessible from the touchpad area, especially on netbooks (might also do with altgr-space, but i'd prefer the dot...). If this is too difficult, or too error-prone, I'd also be happy if altgr-. would at least switch between the current and the previously active window. (I did some research to find apps that might do this, prior to posting this, and also tried to, uhm, "code" on my own, but results were... very buggy... (stuck control key etc...)  ) AltGr should remain usable for other applications. here's a link to alt-tab... http://www.autohotkey.com.../Hotkeys.htm#AltTabDetail
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #1 on: July 11, 2012, 10:08:14 AM » |
|
In Autohotkey, this should work: (I think  ) Formatted for AutoIt with the GeSHI Syntax Highlighter [ copy or print] AltGR & .::AltTab AltGR & RShift & .::ShiftAltTab
|
|
|
|
|
Logged
|
|
|
|
|
me_7834539
|
 |
« Reply #2 on: July 11, 2012, 01:33:43 PM » |
|
Hello, as far as I can see, AltGR is not defined. They say you need to use LControl and RAlt, however
LControl & RAlt & .::AltTab
will not work, either.
|
|
|
|
|
Logged
|
|
|
|
|
|
|
|
jgpaiva
|
 |
« Reply #4 on: July 11, 2012, 03:00:30 PM » |
|
Does this work? (sorry for not really testing it, but I don't have a windows machine available anymore  ) Formatted for AutoIt with the GeSHI Syntax Highlighter [ copy or print] <^>.::AltTab <^>!+.::ShiftAltTab
|
|
|
|
|
Logged
|
|
|
|
|
|
|
tomos
|
 |
« Reply #6 on: July 11, 2012, 04:10:34 PM » |
|
Does this work? (sorry for not really testing it, but I don't have a windows machine available anymore  ) Formatted for AutoIt with the GeSHI Syntax Highlighter [ copy or print] <^>.::AltTab <^>!+.::ShiftAltTab
--------------------------- --------------------------- The AltTab hotkey "<^>!+." must specify which key (L or R). --------------------------- OK --------------------------- will try the other one now...
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #7 on: July 11, 2012, 04:12:33 PM » |
|
In Autohotkey, this should work: (I think  ) Formatted for AutoIt with the GeSHI Syntax Highlighter [ copy or print] AltGR & .::AltTab AltGR & RShift & .::ShiftAltTab
--------------------------- --------------------------- Error at line 1. Line Text: AltGR & .::AltTab Error: Invalid hotkey. The program will exit. --------------------------- OK ---------------------------
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #8 on: July 11, 2012, 04:25:49 PM » |
|
After a bit of experimenting, this works for me: >!.::AltTab but I cant get the second line to work >!RShift.::ShiftAltTab ____________________________ hotkeys from AHK page http://www.autohotkey.com/docs/Hotkeys.htm
|
|
|
|
|
Logged
|
|
|
|
|
me_7834539
|
 |
« Reply #9 on: July 11, 2012, 05:51:07 PM » |
|
@tomos
that's cool, I always though AltGr needs to be specified by both ctrl and alt.
Btw,
RAlt & .::AltTab
works too.
Thanks. For 95% of cases, your help may well solve the problem! Thank you!!
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #10 on: July 11, 2012, 06:26:08 PM » |
|
After a bit of experimenting, this works for me:
>!.::AltTab
but I cant get the second line to work
>!RShift.::ShiftAltTab
Thanks Tomos!! Doesn't something like: Work for the second line?
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #11 on: July 12, 2012, 03:42:31 AM » |
|
Doesn't something like: Work for the second line? looks for Right or Left - but if I add R, as in >!R+.::ShiftAltTab it says invalid hotkey 
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #12 on: July 12, 2012, 03:51:39 AM » |
|
Doesn't something like: Work for the second line? looks for Right or Left - but if I add R, as in >!R+.::ShiftAltTab it says invalid hotkey  :/ bah, without actually experimenting, it's hard to get it right. Maybe our ahk guru skwire will come by and fix this 
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #13 on: July 12, 2012, 04:44:24 AM » |
|
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  : Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] >!.::ShiftAltTab >!+:::ShiftAltTab
":::" is bound to confuse it... I dont even know if that could be the solution, just experimenting 
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #14 on: July 12, 2012, 04:58:23 AM » |
|
This, using "L" instead of the dot: Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] >!l::AltTab >!>+l::ShiftAltTab
gives me --------------------------- The AltTab hotkey ">!>+l" must have exactly one modifier/prefix. --------------------------- which makes me think AHK cant handle shortcuts with three keys?
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #15 on: July 12, 2012, 05:00:42 AM » |
|
If above is true, only solution is to avoid the third key (shift key) This works: Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] >!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: Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] >!ö::AltTab >!ü::ShiftAltTab
--------------------------- Line Text: >!�ltTab Error: This line does not contain a recognized action. ---------------------------
|
|
|
|
« Last Edit: July 12, 2012, 05:28:57 AM by tomos »
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #16 on: July 12, 2012, 06:00:01 AM » |
|
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  : Oh! You're probably right  Does this work?
|
|
|
|
|
Logged
|
|
|
|
|
me_7834539
|
 |
« Reply #17 on: July 12, 2012, 07:20:02 AM » |
|
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!!!
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #18 on: July 12, 2012, 02:22:43 PM » |
|
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) ?
|
|
|
|
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #19 on: July 12, 2012, 02:43:23 PM » |
|
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:
|
|
|
|
|
Logged
|
|
|
|
|
tomos
|
 |
« Reply #20 on: July 12, 2012, 03:10:01 PM » |
|
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: both of those are invalid hotkeys also the following (using "L" maybe a confusing choice [edit] get same results with "p" though [/edit]) - L>!::ShiftAltTab >!ShiftL::ShiftAltTab >!RShiftl::ShiftAltTab but this >!>+L::ShiftAltTab gets me: --------------------------- The AltTab hotkey ">!>+L" must have exactly one modifier/prefix. --------------------------- think I'll retire from (my very short career in) the coding world, too many variables & unknowns there for me :p :-)
|
|
|
|
« Last Edit: July 12, 2012, 03:14:38 PM by tomos; Reason: \"very short career\" :-) »
|
Logged
|
|
|
|
|
jgpaiva
|
 |
« Reply #21 on: July 12, 2012, 03:45:30 PM » |
|
think I'll retire from (my very short career in) the coding world, too many variables & unknowns there for me :p :-)
Ah ah, I understand your pain  Thanks for the help!
|
|
|
|
|
Logged
|
|
|
|
|
|
|
tomos
|
 |
« Reply #23 on: July 12, 2012, 04:22:44 PM » |
|
think I'll retire from (my very short career in) the coding world, too many variables & unknowns there for me :p :-)
Ah ah, I understand your pain  Thanks for the help! as a left hander, I'll probably use some variation of this when using the mouse (which unfortunately I have to a lot). So, thanks for your help ;-) and to me_7834539 for the idea Tom
|
|
|
|
|
Logged
|
|
|
|
|