| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Resize.zip | 2013-03-25 | 675.6 kB | |
| readme.txt | 2013-03-22 | 633 Bytes | |
| Totals: 2 Items | 676.2 kB | 0 |
A simple utility that resizes the last active window then positions it on the screen according to x/y coordinates.
-----------------------------------------------------------------
Local $var = IniReadSection("config.ini", "values")
If @error Then
MsgBox(4096, "", "Error occurred, probably no INI file.")
Else
$a = WinList()
For $i = 1 To $a[0][0]
If $a[$i][0] <> "" AND BitAND(WinGetState($a[$i][1]), 2) Then ExitLoop
Next
WinActivate($a[$i][1])
WinMove("[ACTIVE]", "", $var[1][1], $var[2][1], $var[3][1], $var[4][1], $var[5][1])
EndIf
-----------------------------------------------------------------