Our client has a setup where a PC is connected to 12 monitors. I need a script that will open 12 different web pages, one on each monitor. The PC is running Windows 7 and any browser will do.
feedback
|
|
Here is a good article on how to make the most of your multiple monitors There was also a similar question asked on stackoverflow. You might be able to create a simple index page which uses javascript's window.open to create a new browser with relative position to the index page. | |||
|
feedback
|
|
A solution for this can be hacked together very quickly if the dimensions of each screen are known. I would tackle it with AutoHotkey using the functions Run, WinWait, and WinMove. If you would like to maximize each window, AutoHotkey can do that too :) | |||
|
feedback
|