I am writing a script that opens internet explorer using the webbrowser module and the .open function. By default, on my system, this opens IE in full-screen view. Is there a way to specify the size/location (width, height, x, y) of the browser window that will be opened?
Example: I want to open an IE window @ a specific URL (ie Google Maps) and have the window be located in the bottom-right portion of my screen.
Like I said, I'm currently using webbrowser.open to open the Google Maps page in IE, but I am open to any other method of doing this that would allow me to specify the size/location of the IE window when opened.
--Thanks