topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 4:43 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Idea: Microsoft Default Windows Management  (Read 5291 times)

Smobu

  • Participant
  • Joined in 2008
  • *
  • default avatar
  • Posts: 51
    • View Profile
    • Donate to Member
Idea: Microsoft Default Windows Management
« on: November 13, 2008, 09:02 PM »
Idea: Microsoft Default Windows Management

Right clicking the taskbar in windows allows you to use the "Cascade windows", "Show the windows side by side" and the "Show windows stacked" command. These features are in Vista, but they are similar to Xp's. Is it possible to assign a shortcut key for these two commands for windows Vista? Such as using the ctrl+shift+1 ,ctrl+shift+2,  ctrl+shift+3 or these three items.

skrommel

  • Fastest code in the west
  • Developer
  • Joined in 2005
  • ***
  • Posts: 933
    • View Profile
    • 1 Hour Software by skrommel
    • Donate to Member
Re: Idea: Microsoft Default Windows Management
« Reply #1 on: November 14, 2008, 08:19 PM »
 :) Try ArraWin!

Press Ctrl+Shift+1 through 3 to cascade or arrange windows vertically and horizontally

Skrommel

;ArraWin.ahk
; Press Ctrl+Shift+1 through 3 to cascade or arrange windows vertically and horizontally
;Skrommel @ 2008

;Stolen from SKAN at http://www.autohotkey.com/forum/viewtopic.php?p=84807#84807
^+1::DllCall("CascadeWindows",uInt,0,Int,4,Int,0,Int,0,Int,0) ;Cascade windows
^+2::DllCall("TileWindows",uInt,0,Int,0,Int,0,Int,0,Int,0)    ;Tile windows vertically
^+3::DllCall("TileWindows",uInt,0,Int,1,Int,0,Int,0,Int,0)    ;Tile windows horizontally

Smobu

  • Participant
  • Joined in 2008
  • *
  • default avatar
  • Posts: 51
    • View Profile
    • Donate to Member
Re: Idea: Microsoft Default Windows Management
« Reply #2 on: November 14, 2008, 09:06 PM »
Thanks for this, works like a charm. :)

I forgot to mention something. Could you also make ctrl shift 4 to undo the cascade or tile vertically and horizontally?
« Last Edit: November 14, 2008, 10:12 PM by Smobu »