View Single Post
  #5 (permalink)  
Old 03-30-2007, 07:30 PM
Ayush
Newsgroup Contributor
 
Posts: n/a
Re: Getting an app to open in a set window size & screen position

Replied to [Dan]s message :
> "Ayush" <"ayushmaan.j[aatt]gmail.com"> wrote in message
> news:OZk3HsxcHHA.5052@TK2MSFTNGP05.phx.gbl...
>> Try AutoHotKey...

> Ayush-This things great! After some experimentation I wrote the following
> which opens the program, then positions it properly, all with one press of
> one of my logitech keyboard's configurable hotkeys. I put a 2 second delay
> in after program launch to allow time for the program to open before being
> positioned:
>
> Run C:\program files\nero\nero 7\nero home\nerohome.exe
> Sleep, 2000
> WinMove,Nero Home,,60,0,972,757
>
> THANKS!!!



You are welcome Dan.

btw, you can use WinWait :

Run C:\program files\nero\nero 7\nero home\nerohome.exe
WinWait,Nero Home
WinMove,,,60,0,972,757


Good Luck, Ayush.
--
XP-Tips & Tricks [Use keyboard shortcuts] :
http://www.microsoft.com/windowsxp/u...shortcuts.mspx
Reply With Quote

 
Old 03-30-2007, 07:30 PM