AutoHotkey Community

It is currently May 27th, 2012, 4:56 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: April 13th, 2010, 12:59 pm 
Offline

Joined: July 28th, 2006, 12:36 pm
Posts: 5
I would like to be able to do

CTRL SHIFT Left instead of ShiftAltTab

and

CTRL SHIFT Right instead of AltTab

I found in the documentation where

Code:
LControl & LShift::AltTab
LControl & Enter::ShiftAltTab


does almost what I want, but if I change it to

Code:
LControl & LShift & Right::AltTab
LControl & LShift & Left::ShiftAltTab


It doesn't load saying that it's an invalid hotkey.

Can anyone help?

Thanks,
Richard

_________________
Richard


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 13th, 2010, 2:17 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
AutoHotkey Help wrote:
Each Alt-Tab hotkey must be a combination of two keys, which is typically achieved via the ampersand symbol (&).


But you can try this workaround ;)
Code:
KeyWait,LShift
Suspend, On
~LCtrl::Suspend Off
~LCtrl UP::
KeyWait,LShift
Suspend On
Return
~<+Right::AltTab
~<+Left::ShiftAltTab

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 78 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group