| View previous topic :: View next topic |
| Author |
Message |
tester8900
Joined: 23 Jan 2006 Posts: 10
|
Posted: Mon Jan 23, 2006 7:56 pm Post subject: Simulate holding down Alt key while pressing Tab twice |
|
|
I am trying to simulate holding down the Alt key while pressing Tab twice. I am trying to map backtick to do that. I tried compromising and mapping Alt+backtick to do that so I could use {Blind}, but that causes the Alt+Tab window to stay up.
!`::
Send {Blind}{TAB}{TAB}
return
Thanks! |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Wed Jan 25, 2006 12:38 am Post subject: Re: Simulate holding down Alt key while pressing Tab twice |
|
|
| tester8900 wrote: | | {Blind}...causes the Alt+Tab window to stay up. | Maybe I'm missing something, but perhaps you can change this line:
Send {Blind}{TAB}{TAB}{Alt up} |
|
| Back to top |
|
 |
tester8900
Joined: 23 Jan 2006 Posts: 10
|
Posted: Wed Jan 25, 2006 2:01 am Post subject: |
|
|
{Alt up} is what I needed. Thanks for your help!
Based on the solution you provided, I was able to solve my original problem of just mapping backtick to this, I used
`::
Send {Alt down}{TAB}{TAB}{Alt up}
return |
|
| Back to top |
|
 |
|