Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Does an application exist that will cause the computer to switch (bring in to focus) between two different applications, on a timer? This is for Windows 7.

I need this for a screen that will display publicly to customers. I want the screen to switch between two different applications every, say, 30 seconds. I figure there are enough businesses out there will customer-facing monitors these days that something simple like this must exist!

share|improve this question

3 Answers

up vote 6 down vote accepted

Yes, it is called AutoIt.

You would use something like this:

While 1 ;loop indefinitely
    WinActivate("notepad","") ;give focus to notepad
    Sleep(30000) ;sleep 30 seconds
    WinActivate("wordpad","") ;give focus to wordpad
    Sleep(30000) ;sleep 30 seconds
WEnd

WinActivate() gives focus to the window with exact or closest matching title, in cases where there are two that fit, it gives focus to the most recently activated one. Sleep() is in milliseconds, so 30000 is 30 seconds.

share|improve this answer
Yep, writing my own AutoIt script was going to be my backup plan and since you saved me some trouble by providing example code I'll just accept your answer. Thanks! – OverloadUT Aug 24 '11 at 22:05

If there will not be any interaction between the customers and the screens/applications, you should simply take a screenshot of the programs and then create a simple slide show with a 30-second timer and endless repeat.

Generally, companies that use customer facing monitors that display programs for advertisement purposes do not use "live" programs. You want to control the interface, and allowing the chance of some error to show is not what you want. They'll record screen videos of the programs working, or simple take screenshots for static display.

Otherwise, there are specific dashboards that are used that display specific information, and these are not switched between, generally. Or, they're switched using A/V equipment so that each program is running on a different computer so as to minimize, once again, the chance of failure.

share|improve this answer
I thought of that, but unfortunately one of the applications being switched to dynamically loads content from the web (think RSS reader) so a static image won't work – OverloadUT Aug 24 '11 at 21:26

AutoTab is very simple.

http://www.analogx.com/contents/download/System/autotab/Freeware.htm

share|improve this answer
Simple, straightforward, and AnalogX seems like a nice guy. – Kirk Broadhurst Aug 21 '12 at 23:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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