vote up 1 vote down star
1

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.

flag

1 Answer

vote up 4 vote down check

Use AutoHotkey!

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

Your Answer

Get an OpenID
or
never shown

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