AutoHotkey Community

It is currently May 26th, 2012, 10:28 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: August 30th, 2009, 11:45 am 
Offline

Joined: January 10th, 2009, 6:40 pm
Posts: 32
A simple script to make windows snap to the edges of the screen when moving them around.
Snap_prox is the snapping distance (from the active window's edge to the edge of the screen).

Cheers
gahks

Code:
;SETTINGS
snap_prox = 15 ;in px
reaction_speed = 100 ;in ms
;Window snapper code
SysGet, screen, MonitorWorkArea
Loop
{
WinGetActiveStats, title_act, w_act, h_act, x_act, y_act ;active window title and dimensions
If (w_act < screenright-snap_prox)
{
If (x_act > screenleft-snap_prox AND x_act < screenleft OR x_act < screenleft+snap_prox AND x_act > screenleft)
   WinMove, %title_act%,, screenLeft
If (x_act + w_act > screenright-snap_prox AND x_act + w_act < screenright OR x_act + w_act < screenright+snap_prox AND x_act + w_act > screenright)
   WinMove, %title_act%,, (screenright-w_act)
}
If (h_act < screenbottom-snap_prox)
{
If (y_act > screentop-snap_prox AND y_act < screentop OR y_act < screentop+snap_prox AND y_act > screentop)
   WinMove, %title_act%,,, screentop
If (y_act + h_act > screenbottom-snap_prox AND y_act + h_act  < screenbottom OR y_act + h_act < screenbottom+snap_prox AND y_act + h_act > screenbottom)
   WinMove, %title_act%,,, (screenbottom-h_act)
}
Sleep, %reaction_speed%
}


Last edited by gahks on September 25th, 2009, 7:35 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 1st, 2009, 2:50 am 
Offline

Joined: December 21st, 2008, 7:29 pm
Posts: 181
Very cool, thanks for contributing it.


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: Cristi®, Google Feedfetcher, specter333, Yahoo [Bot] and 9 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