Can it be moved by Window Title as well as exe name?
Other info on moving it in another language could be helpful.
Update: some Perl sample can be found in Win32::GuiTest but there seems to be no resize or move functions.
|
Can it be moved by Window Title as well as exe name? Other info on moving it in another language could be helpful. Update: some Perl sample can be found in Win32::GuiTest but there seems to be no resize or move functions. |
||||
|
Here's a way to do it in Ruby using win32-api:
This only works if the window is called "firefox" exactly (not case-sensitive from when I tested). Since it is likely to be titled differently (e.g., "Google - Mozilla Firefox"), you'll probably want to use EnumWindows to enumerate through all windows and find the one you're looking for. |
|||
|
|
|
Win32::API and MoveWindow. See also How do you programmatically resize and move windows with the Windows API?. |
|||
|
|
%x(osascript -e '...')– Adrian Jul 24 '10 at 3:44