Forum Discussion
14 years ago
It seems like such a simple feature that all apps should have. SoapUI and many other great apps don't have it.
I use an AutoHotKey script to do it for me. You may need to adjust the path, the amount of sleep, the coordinates and the width/height for your system.
I use an AutoHotKey script to do it for me. You may need to adjust the path, the amount of sleep, the coordinates and the width/height for your system.
; See http://www.autohotkey.com/docs/commands/SetTitleMatchMode.htm
; 2 = A window's title can contain WinTitle anywhere inside it to be a match.
SetTitleMatchMode, 2
; Launch the app.
Run,"C:\Program Files (x86)\SmartBear\soapUI-4.5.0\bin\soapUI-4.5.0.exe"
; Wait long enough for the app to appear.
Sleep 5000
; See http://www.autohotkey.com/docs/commands/WinMove.htm
; WinMove, WinTitle, WinText, X, Y [, Width, Height, ExcludeTitle, ExcludeText]
WinMove,soapUI,,200,0,1500,A_ScreenHeight-30
WinActivate,soapUI