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

DonationCoder.com Software > Finished Programs

DONE: ALT-TAB edge of the screen (new)

<< < (5/6) > >>

AndyM:
Except as soon as I let go, the script does it's thing.  Any clues on how to fix this?
--- End quote ---

I did something crude but effective, at least for when I end up at the right edge of the screen while resizing a window by dragging the right edge.  If the left button is down and in the hot space at the right edge, when I let go the mouse gets moved two pixels away from the edge and the loop continues:


--- ---Loop
{
  MouseGetPos,mx,my
  GetKeyState,lbutton,LButton,P
  If (mx=1919) and (my>200) and (my<800) and (lbutton="D")
  {
  keywait,LButton
  MouseMove,1917,my
  }
  If (mx=1919) and (my>200) and (my<800) and (lbutton="U")
  {
    If tabbed=0
    {
   .
   .
   .

better suggestions welcome!

cbbibleboy:
This thread may have already been exhausted but I've made a quick app (Edge Roll) for this purpose. Unlike (I think) the other apps posted though, it reserves the edges of the screen (like, but not using, coral desktop) so there's no issues with scrolling, highlights the edges on hover with an adjustable delay time and can optionally mimic Alt+Tab or Alt+Esc behavior. Enjoy!  :)


In the zip is both the installer (for standard users) and the Edge Roll standalone (for users who don't need to work through the "Add/Remove Progams" control panel interface).

lanux128:
@cbbibleboy: nice program, works well! :Thmbsup:

wep:
try this ahk-code:

;;;;;;;;;;;;start;;;;;;;;;;;;;;
#CapsLock::
WinGetActiveTitle, Title
WinSet, Transparent, 125, %Title%
KeyWait, CapsLock
WinSet, Transparent, off, %Title%

#Esc::
WinGetActiveTitle, Title
WinMinimize, %Title%
KeyWait, Esc
WinRestore, %Title%
WinActivate, %Title%
Return
;;;;;;;;;;;;;end;;;;;;;;;;;;;;;;;

or try this compiled WinEsc.exe to make you life easier :)

wep:
Hi,

I was working on an assignment over the weekend and found myself constantly pressing ALT-TAB to switch between two windows, I was wondering if anyone knew of a program or could script a small program to invoke ALT-TAB whn i move my mouse to the edge of the screen - like hot corners except instead of corners - edges of the screen.

Thanks !!!  :Thmbsup:

Phil
-philip2005 (October 29, 2007, 09:05 PM)
--- End quote ---

try this code

#CapsLock::
WinGetActiveTitle, Title
WinSet, Transparent, 125, %Title%
KeyWait, CapsLock
WinSet, Transparent, off, %Title%

#Esc::
WinGetActiveTitle, Title
WinMinimize, %Title%
KeyWait, Esc
WinRestore, %Title%
WinActivate, %Title%
Return

or try this compiled WinEsc.exe Maybe this one make you life easier :)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version