We've got a Windows XP box hooked up to a large display in our office showing some information. We'd like it to automatically alt+tab to a different application showing different information every minute or so.

Is there some simple free software out there which can do this for us?

Thanks.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Use AutoHotkey!

Loop {
    Send {Alt down}{Tab down}{Alt up}{Tab up}
    Sleep 60000 ; wait 60 seconds
}
link|improve this answer
Too easy. Thanks man. – Dean Nov 2 '09 at 2:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.