| View previous topic :: View next topic |
| Author |
Message |
andrei901
Joined: 20 Jan 2008 Posts: 27
|
Posted: Mon Jan 21, 2008 12:30 am Post subject: Is this how keys work? |
|
|
| Code: | Send {tab}{tab}{tab}{tab}{tab}{tab}{tab}{tab}{tab}{tab}{tab}{enter}
Exit |
would this be 11 tabs and 1 enter? i didn't work for me, so i was confused. |
|
| Back to top |
|
 |
DerRaphael
Joined: 23 Nov 2007 Posts: 604 Location: 127.0.0.1
|
Posted: Mon Jan 21, 2008 12:50 am Post subject: |
|
|
use
| Code: | | send, {tab 11}{enter} |
does the same, but is shorter
greets
derRaphael _________________
|
|
| Back to top |
|
 |
andrei901
Joined: 20 Jan 2008 Posts: 27
|
Posted: Mon Jan 21, 2008 1:14 am Post subject: |
|
|
| thanks. its my third day on AHK, ill need to remember that |
|
| Back to top |
|
 |
andrei901
Joined: 20 Jan 2008 Posts: 27
|
Posted: Tue Jan 22, 2008 6:14 pm Post subject: |
|
|
| for some reason, when i tried this, it did about 4 tabs less than it should have, and saying {tab 15} didn't fix the problem. |
|
| Back to top |
|
 |
ManaUser
Joined: 24 May 2007 Posts: 906
|
Posted: Tue Jan 22, 2008 7:19 pm Post subject: |
|
|
| Well, what are you doing exactly? Is it in a game or something like that? (They often have trouble picking up quick keystrokes) Or if it's a normal windows program there's probably a better way to do what you're aiming for anyway. |
|
| Back to top |
|
 |
andrei901
Joined: 20 Jan 2008 Posts: 27
|
Posted: Thu Jan 24, 2008 12:46 am Post subject: |
|
|
umm.. i thought about what i was doing and decided that it would just be easier to "reverse tab", i.e. tab from the bottom of the page. is this possible in AHK?
Im basically trying to tab between links on websites. |
|
| Back to top |
|
 |
ManaUser
Joined: 24 May 2007 Posts: 906
|
Posted: Thu Jan 24, 2008 1:31 am Post subject: |
|
|
| Send +{Tab} means Shift+Tab. That's usually the way to cycle backwards. |
|
| Back to top |
|
 |
andrei901
Joined: 20 Jan 2008 Posts: 27
|
Posted: Thu Jan 24, 2008 1:50 am Post subject: |
|
|
thanks.
how do i get it to hold shift while tabbing?
where X is the amount of tabs? |
|
| Back to top |
|
 |
Conquer
Joined: 27 Jun 2006 Posts: 385 Location: Canada
|
Posted: Thu Jan 24, 2008 2:43 am Post subject: |
|
|
| Code: | loop 15
Send +{Tab} |
_________________
 |
|
| Back to top |
|
 |
|