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 

WinXP doesn't allow me to open AHK anymore

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports
View previous topic :: View next topic  
Author Message
FriendRist
Guest





PostPosted: Tue Oct 19, 2004 8:45 am    Post subject: WinXP doesn't allow me to open AHK anymore Reply with quote

I was trying to make the program alt tab between interval of 10 seconds.

So I start:
SetKeyDelay 10000
Send, {ALTDOWN}{TAB}{ALTUP}

Now. Everytime I try opening AHK windows doesn't let me, probably thinking it's a virus or something. How do I get around this?
Back to top
FriendRist
Guest





PostPosted: Tue Oct 19, 2004 8:51 am    Post subject: OK, better yet Reply with quote

How do I alt tab?
I know it's Send {ALTDOWN}{TAB}{ALTUP}
but that doesn't work--it just lets the application selector tab stay open. I need something that will seemlessly switch to another program. Possible?
Back to top
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10467

PostPosted: Tue Oct 19, 2004 12:12 pm    Post subject: Reply with quote

The following will alt-tab every 10 seconds until you exit the script via its tray icon:
Code:
Loop
{
     Sleep, 10000
     Send, !{tab}
}

For something more custom, check out GroupAdd, which offers behavior similar to Alt-Tab.

Edit: Fixed typo.


Last edited by Chris on Tue Oct 19, 2004 10:30 pm; edited 1 time in total
Back to top
View user's profile Send private message Send e-mail
FriendRist
Guest





PostPosted: Tue Oct 19, 2004 10:27 pm    Post subject: Reply with quote

you're awesome thx =D
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports 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