Gaming Addon find?

  • Thread starter Thread starter tagzard
  • Start date Start date
  • Views Views 1,204
  • Replies Replies 10

tagzard

Tagzard the Crazy Dinosaur with Wings.
Banned
Joined
Apr 28, 2010
Messages
1,452
Reaction score
18
Trophies
0
Age
29
Location
Chicago Illinois
Website
tagzard.tk
XP
679
Country
United States
I want to resize a window to a pacific dimension. Like W:411 L:342, get it? So while i resize it i see what length and width it is. Any program that lets me do that?
 
AutoHotKey, I use it for this exact purpose. It not only can set exact window dimensions, it can also remove borders, and position it exactly where you want.

Just get a script for resizing windows, and edit the script using notepad to the dimensions you want. Just not that Length is called Height. Then you just load the script in AutoHotKey, and pres the hotkeys you set, it'll apply it to whatever window is focused on in Windows.
 
Xuphor said:
AutoHotKey, I use it for this exact purpose. It not only can set exact window dimensions, it can also remove borders, and position it exactly where you want.

Just get a script for resizing windows, and edit the script using notepad to the dimensions you want. Just not that Length is called Height. Then you just pres the hotkeys you set, and it'll apply it to whatever window is focused on in Windows.
Link? Because this one gives me to many options and i don't know which one to choose!!!
http://www.autohotkey.com/download/
 
tagzard said:
Xuphor said:
AutoHotKey, I use it for this exact purpose. It not only can set exact window dimensions, it can also remove borders, and position it exactly where you want.

Just get a script for resizing windows, and edit the script using notepad to the dimensions you want. Just not that Length is called Height. Then you just pres the hotkeys you set, and it'll apply it to whatever window is focused on in Windows.
Link? Because this one gives me to many options and i don't know which one to choose!!!
http://www.autohotkey.com/download/

Installer for AutoHotkey Basic, here:
http://www.autohotkey.com/download/AutoHotkeyInstall.exe

Google AutoHotKey resize script, you'll find one easily that suits your needs and advance or non-advance use.
 
Xuphor said:
tagzard said:
Xuphor said:
AutoHotKey, I use it for this exact purpose. It not only can set exact window dimensions, it can also remove borders, and position it exactly where you want.

Just get a script for resizing windows, and edit the script using notepad to the dimensions you want. Just not that Length is called Height. Then you just pres the hotkeys you set, and it'll apply it to whatever window is focused on in Windows.
Link? Because this one gives me to many options and i don't know which one to choose!!!
http://www.autohotkey.com/download/

Installer for AutoHotkey Basic, here:
http://www.autohotkey.com/download/AutoHotkeyInstall.exe

Google AutoHotKey resize script, you'll find one easily that suits your needs and advance or non-advance use.
Thanks. To many links.
http://www.autohotkey.com/docs/scripts/ Help?
 
Just make a new script, use this for it:
Code:
Disregard this


EDIT: sorry, I broke the script, hang on.

EDIT 2:
Code:
ResizeWin(Width = 0,Height = 0)
{
ÂÂWinGetPos,X,Y,W,H,A
ÂÂIf %Width% = 0
ÂÂÂÂWidth := W

ÂÂIf %Height% = 0
ÂÂÂÂHeight := H

ÂÂWinMove,A,,%X%,%Y%,%Width%,%Height%
}
#!u::ResizeWin([Width here, remove brackets],[Height here, remove brackets])
Don't edit anything except the bracket parts.
It's set to resize a window to whatever dimensions you put in, just press U while holding down the Windows and Alt keys. You won't accidently trigger it that way. Just tested it myself, works fine.

EDIT 3: MAJOR mistake on my end again, finally fixed it right.
 
Xuphor said:
Just make a new script, use this for it:
Code:
Disregard this


EDIT: sorry, I broke the script, hang on.

EDIT 2:
Code:
ResizeWin(Width = 0,Height = 0)
{
ÂÂWinGetPos,X,Y,W,H,A
ÂÂIf %Width% = 0
ÂÂÂÂWidth := W

ÂÂIf %Height% = 0
ÂÂÂÂHeight := H

ÂÂWinMove,A,,%X%,%Y%,%Width%,%Height%
}
#!u::ResizeWin([Width here, remove brackets],[Height here, remove brackets])
Don't edit anything except the bracket parts.
It's set to resize a window to whatever dimensions you put in, just press U while holding down the Windows and Alt keys. You won't accidently trigger it that way. Just tested it myself, works fine.

EDIT 3: MAJOR mistake on my end again, finally fixed it right.
So where do i put that?
 
Oh.

Just make a new .txt file, copy/paste that into it, edit the dimensions as you want, save it. Then change it from a .txt to a .ahk by just renaming the extension.
Right click it, Run Script.
 
Xuphor said:
Oh.

Just make a new .txt file, copy/paste that into it, edit the dimensions as you want, save it. Then change it from a .txt to a .ahk by just renaming the extension.
Right click it, Run Script.
I think your not getting it. I simply want somthing that tells me the dimensions while i re size a window.
 
tagzard said:
Xuphor said:
Oh.

Just make a new .txt file, copy/paste that into it, edit the dimensions as you want, save it. Then change it from a .txt to a .ahk by just renaming the extension.
Right click it, Run Script.
I think your not getting it. I simply want somthing that tells me the dimensions while i re size a window.

Poor wording/misread, yes, I misunderstood.
But AutoHotKey has that kind of script too, but I don't have it on me atm, and I'm still in the middle of classes.
Look for a script that gets window pixels and/or gets size pixels, etc.
 
Xuphor said:
tagzard said:
Xuphor said:
Oh.

Just make a new .txt file, copy/paste that into it, edit the dimensions as you want, save it. Then change it from a .txt to a .ahk by just renaming the extension.
Right click it, Run Script.
I think your not getting it. I simply want somthing that tells me the dimensions while i re size a window.

Poor wording/misread, yes, I misunderstood.
But AutoHotKey has that kind of script too, but I don't have it on me atm, and I'm still in the middle of classes.
Look for a script that gets window pixels and/or gets size pixels, etc.
I'll try. But for now help me find s program
 

Site & Scene News

Popular threads in this forum