AutoHotkey Community

It is currently May 25th, 2012, 10:14 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Automagic dialog resize
PostPosted: February 2nd, 2005, 11:38 pm 
Offline

Joined: January 30th, 2005, 11:18 pm
Posts: 133
Location: Darmstadt, Germany
Hi,

this little one makes me love FilZip (www.filzip.com, a very good freeware zipper) more than ever, because now its file extraction dialog becomes the size I ever wanted. This might be a sufficient technique for all windows that will open with the same default size every time.

Code:
SetTitleMatchMode, 1
SetTimer, ResizeFilZip, 500

; resize FilZip“s "Extract Files" dialog automatically
ResizeFilZip:
  FZDialogName = Dateien extrahieren
  IfWinActive, %FZDialogName%
  {
    WinGetPos, posX, posY, width, height, %FZDialogName%
    if height < 400
      WinMove, %FZDialogName%,,posX-50,posY-150,560, 750
  }
Return


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 7th, 2005, 10:44 am 
Offline

Joined: October 29th, 2004, 3:35 pm
Posts: 56
Hi, thanks for the idea. In http://www.autohotkey.com/forum/viewtopic.php?t=1766&highlight=resize+enable You'll find an helpfull utilty. It doesnt remember the size but it works for all the windows :)


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher and 15 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group