Guest
|
Posted: Tue Oct 19, 2004 11:03 am Post subject: resize current window |
|
|
key definitions to resize the current window
nothing fancy, but good if you like that sort of thing...
jack
Computer...you and I need to have a little talk
| Code: | #^down::
wingetpos x, y,w,h, A
h += 100
winmove, A,,%x%, %y%,%w%,%h%
return
#^up::
wingetpos x, y,w,h, A
h -= 100
winmove, A,,%x%, %y%,%w%,%h%
return
#^right::
wingetpos x, y,w,h, A
w += 100
winmove, A,,%x%, %y%,%w%,%h%
return
#^left::
wingetpos x, y,w,h, A
w -= 100
winmove, A,,%x%, %y%,%w%,%h%
return
|
|
|