AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Is this how keys work?

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
andrei901



Joined: 20 Jan 2008
Posts: 27

PostPosted: Mon Jan 21, 2008 12:30 am    Post subject: Is this how keys work? Reply with quote

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
View user's profile Send private message AIM Address
DerRaphael



Joined: 23 Nov 2007
Posts: 604
Location: 127.0.0.1

PostPosted: Mon Jan 21, 2008 12:50 am    Post subject: Reply with quote

use
Code:
send, {tab 11}{enter}


does the same, but is shorter

greets
derRaphael
_________________
Back to top
View user's profile Send private message
andrei901



Joined: 20 Jan 2008
Posts: 27

PostPosted: Mon Jan 21, 2008 1:14 am    Post subject: Reply with quote

thanks. its my third day on AHK, ill need to remember that
Back to top
View user's profile Send private message AIM Address
andrei901



Joined: 20 Jan 2008
Posts: 27

PostPosted: Tue Jan 22, 2008 6:14 pm    Post subject: Reply with quote

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
View user's profile Send private message AIM Address
ManaUser



Joined: 24 May 2007
Posts: 906

PostPosted: Tue Jan 22, 2008 7:19 pm    Post subject: Reply with quote

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
View user's profile Send private message
andrei901



Joined: 20 Jan 2008
Posts: 27

PostPosted: Thu Jan 24, 2008 12:46 am    Post subject: Reply with quote

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
View user's profile Send private message AIM Address
ManaUser



Joined: 24 May 2007
Posts: 906

PostPosted: Thu Jan 24, 2008 1:31 am    Post subject: Reply with quote

Send +{Tab} means Shift+Tab. That's usually the way to cycle backwards.
Back to top
View user's profile Send private message
andrei901



Joined: 20 Jan 2008
Posts: 27

PostPosted: Thu Jan 24, 2008 1:50 am    Post subject: Reply with quote

thanks.

how do i get it to hold shift while tabbing?

Code:
Send +{tabX}


where X is the amount of tabs?
Back to top
View user's profile Send private message AIM Address
Conquer



Joined: 27 Jun 2006
Posts: 385
Location: Canada

PostPosted: Thu Jan 24, 2008 2:43 am    Post subject: Reply with quote

Code:
loop 15
     Send +{Tab}

_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group