AutoHotkey Community

It is currently May 26th, 2012, 11:59 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 90 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
Author Message
 Post subject:
PostPosted: October 29th, 2007, 7:32 pm 
No, not me again. :?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 31st, 2007, 5:38 am 
oh not you again :x


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 26th, 2008, 11:55 pm 
Is it possible to have this only autoraise grouped items? I don't want to activate single items just the grouped ones. That would make my day if I could do that instead of having a double tall taskbar that is extremely cluttered.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 2nd, 2009, 6:52 am 
Hi

Thank you for autorise script.
Can this script be converted to Windows 7's Peak feature?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 2nd, 2009, 7:42 am 
Offline

Joined: February 2nd, 2008, 4:35 am
Posts: 643
I recently wrote a script which uses "click-less" bringing-up of taskbar/start-menu (started off with just using the usual mouse-on-edge-of-screen-brings-up-taskbar (= "click-less"), but thought it would be cool to also have Start Menu (& "All Prgram" menu) to be brought up too)

And now, upon seeing this very cool script, i'm thinking just maybe the 2 scripts could somehow be combined??? (or at least i'm thinking that would like the hover-over-button-to-bring-up-wiindow (= "auto-raise"?) in my script)

Or maybe users could just have both scripts running...

See my script here Improved Windows autohide sidebar


Report this post
Top
 Profile  
Reply with quote  
 Post subject: desktop
PostPosted: July 24th, 2009, 10:56 pm 
Offline

Joined: February 2nd, 2009, 2:03 pm
Posts: 112
Is there a way to exclude hovering over desktop? I only want it to be enabled with opened windows and taskbar


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 25th, 2009, 4:05 am 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7502
Location: Australia
Add this to the auto-execute section of the script:
Code:
GroupAdd, DisableHover, ahk_class Progman


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2009, 10:56 am 
Is there a way to use Autorise in Windows 7?
I miss it.


Report this post
Top
  
Reply with quote  
 Post subject: QtTabBar
PostPosted: October 1st, 2009, 5:44 am 
Just found this jewel. Thanks a lot Lexicos.

Add this to add hover select for QtTabBar :D

Code:
; hover over QTtabbar:
    if (WinActive("ahk_class CabinetWClass")) or (WinActive("ahk_class ExploreWClass"))
    {
        MouseGetPos,,, win, ctl
        WinGetTitle, ti, ahk_id %win%
        WinGetClass, cl, ahk_id %win%
        if (ctl = "WindowsForms10.Window.8.app.0.378734a2")
        {
            Click
            return
        }
    }


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: October 1st, 2009, 6:23 am 
Offline

Joined: September 20th, 2006, 2:05 pm
Posts: 73
yep i am lazy ;)

Code:
 ; Peek
       MouseGetPos,,,, ctl
        if (ctl = "TrayNotifyWnd1")
        {
            WinMinimizeAll
            return
        }
; Tabs (Total Commander & system tabs)
        else if (ctl = "TMyPanel3") or (ctl = "TMyPanel7") or (ctl = "WindowsForms10.Window.8.app.0.378734a2") or (ctl = "SysTabControl321")
        {
            Click
            return
        }


Report this post
Top
 Profile  
Reply with quote  
PostPosted: October 1st, 2009, 7:31 am 
Offline

Joined: September 28th, 2009, 4:32 am
Posts: 86
I wonder if it's possible to have an effect similar to Aero Peek, when the mouse hovers over the "Show Desktop" icon.

_________________
TypingAid autocompletion program made with AHK.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 1st, 2009, 7:48 am 
Offline

Joined: September 20th, 2006, 2:05 pm
Posts: 73
Look at the post above yours. I used the TrayNotifyWnd1 Control for the same purpose. You may use "TrayClockWClass1" for hovering over the tray clock to achieve the same. ;)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 1st, 2009, 6:31 pm 
Offline

Joined: September 28th, 2009, 4:32 am
Posts: 86
Thank you. I added some improvement to your script to make the effect closer to the real Aero Peek.

add this along with the main variables
Code:
peeking = 0


add this in the body
Code:
; Aero Peek simulation
MouseGetPos,,,, ctl
if (ctl = "TrayClockWClass1") {
   Send #d
   peeking = 1
   return
} else if (peeking = 1) {
   Send #d
   peeking = 0
   return
}


I will stop here and leave it for the more ambitious one to actually make the windows transparent instead of minimized.

_________________
TypingAid autocompletion program made with AHK.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 1st, 2009, 9:22 pm 
Offline

Joined: September 20th, 2006, 2:05 pm
Posts: 73
for a translucent window, you may use winset, transparent

also, instead of sending win +d, you may even use WinMinimizeAllUndo :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 2nd, 2009, 11:32 pm 
Offline

Joined: September 28th, 2009, 4:32 am
Posts: 86
..:: Free Radical ::.. wrote:
for a translucent window, you may use winset, transparent

also, instead of sending win +d, you may even use WinMinimizeAllUndo :)


Waiting for an enthusiast to write me the script.

WinMinimizeAllUndo doesn't work on my comp, so Send #d is the more solid way to go.

_________________
TypingAid autocompletion program made with AHK.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 90 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher and 55 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