ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

DONE: MiniMe (aka MaxiMe)

<< < (3/7) > >>

Lashiec:
Sounds interesting. I usually don't use AutoHotkey apps (except for WinWarden), but I think I could find an use for this one. Thanks for your work! :Thmbsup:

jgpaiva:
And... Here's another adition:


--- ---{
    WinExist("A")
    WinGet, MaxState, MinMax,
    if(MaxState = 1)
      {
      WinRestore
      return
      }
     WinMaximize
}
If you use that instead of WinMaximize, A, you'll get a maximize toggle effect ;)

nogojoe:
Hi Coders

Like this idea , kinda works for me half pie. the 2x operation is great

2x right control minimizes the open window to the taskbar.

2x right shift does nothing to open the window from the taskbar  but does open when the window has been half closed via the middle button (top right toolbar ... middle button ).

Plays havoc with my program Spell Catcher Plus as it has Ctrl as its main menu/macro key .although I have changed those macro keys it still picks up the ctrl somewhere along the line and opens its window.

Is it possible to have the Scroll lock + Pause break keys  operate the actions for minimize/maximize.
I never use those keys at all on my keyboard.

I have a standard 101/102 key or Micrsoft Natural PS/2 keyboard     running Win Xp sp2

Thanks  nogojoe

jgpaiva:
@nogojoe: sure, replacing those is very easy... I attached the modified script to my post.

Regarding shift press, please test this new version ;)


--- ---; minimize the current window when pressing right control twice quickly
; maximize the current window when pressing right shift twice quickly
#NoEnv
SendMode Input
#NoTrayIcon
Delay = 250

~ScrollLock up::
If (A_PriorHotkey = A_ThisHotkey and A_TimeSincePriorHotkey < Delay)
WinMinimize, A
Return
~Pause up::
If (A_PriorHotkey = A_ThisHotkey and A_TimeSincePriorHotkey < Delay)
        {
            WinExist("A")
            WinGet, MaxState, MinMax,
            if(MaxState = 1)
              {
              WinRestore
              return
              }
             WinMaximize
        }

Return

nogojoe:
Hi jgpaiva

Pause break works ok toogles to minimize open window to what size you want and reopens fully

Scroll lock just sends the current window straight to  the taskbar with no other action cant raise it to full open window from there,(via those keys)

Doesn’t interfere with spellcatcher plus now.

nogojoe

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version