| Author |
Message |
Topic: postmessage volume in win7 |
jak
Replies: 8
Views: 316
|
Forum: Ask for Help Posted: Thu Dec 02, 2010 4:15 am Subject: postmessage volume in win7 |
| just fyi guys, none of the above worked. I tried everything above. I also used windows spy and based on that tried controlsend to ahk_class Progman, as well as to window title of "Program Manager ... |
Topic: postmessage volume in win7 |
jak
Replies: 8
Views: 316
|
Forum: Ask for Help Posted: Tue Nov 23, 2010 9:14 am Subject: postmessage volume in win7 |
You need to use ahk_class of Desktop window (Not sure if it is the same class on Win7).controlsend,,{vkAEsc12E},ahk_class WorkerW
i'll try it shortly, thanks much |
Topic: postmessage volume in win7 |
jak
Replies: 8
Views: 316
|
Forum: Ask for Help Posted: Tue Nov 23, 2010 7:05 am Subject: postmessage volume in win7 |
hmmm, didnt work.
so basically, for "volume down", this did not work:
xbutton1 & wheeldown::controlsend,,{vkAEsc12E},Desktop
while this works (but sends t ... |
Topic: postmessage volume in win7 |
jak
Replies: 8
Views: 316
|
Forum: Ask for Help Posted: Tue Nov 23, 2010 7:00 am Subject: postmessage volume in win7 |
Try ControlSend to Desktop.
thanks, i'll try it |
Topic: postmessage volume in win7 |
jak
Replies: 8
Views: 316
|
Forum: Ask for Help Posted: Tue Nov 23, 2010 6:00 am Subject: postmessage volume in win7 |
hi guys,
did a quick search for this, i may not be using the right keywords, didnt find anything helpful.
Basically i have volume controls on my mouse right now via "send" and the VK num ... |
Topic: win7 quick launch toolbar icon |
jak
Replies: 6
Views: 400
|
Forum: Ask for Help Posted: Mon Jul 12, 2010 4:07 pm Subject: win7 quick launch toolbar icon |
| hi tlm -- i guess plotting the coordinates is the fallback option, if we dont have a more elegant solution... |
Topic: ifwinactive [windows 7 desktop]? |
jak
Replies: 8
Views: 498
|
Forum: Ask for Help Posted: Mon Jul 12, 2010 5:03 am Subject: ifwinactive [windows 7 desktop]? |
| hey TLM, thanks so much, i'll try this out. Wonder if you can also help [url=http://www.autohotkey.com/forum/viewtopic.php?p=368830#368830]on a parallel thread, where i'm trying to do something simil ... |
Topic: win7 quick launch toolbar icon |
jak
Replies: 6
Views: 400
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 10:42 pm Subject: win7 quick launch toolbar icon |
| anyone? I cant be the first to want to double click those icons in the quirky win7 qucklaunch bar. |
Topic: ifwinactive [windows 7 desktop]? |
jak
Replies: 8
Views: 498
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 10:40 pm Subject: ifwinactive [windows 7 desktop]? |
~lbutton::
mousegetpos,,, wid, control
wingetclass, wclass, ahk_id %wid%
if (A_PriorHotkey = "~LButton" && A_TimeSincePriorHotkey < 400) ; double click
... |
Topic: ifwinactive [windows 7 desktop]? |
jak
Replies: 8
Views: 498
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 6:57 am Subject: ifwinactive [windows 7 desktop]? |
hrmm ok run this script,
and click somewhere on the desktop.
while !( getKeyState( "F1", P ) ) {
mouseGetPos,,, curWin, curCon
winGet, curStlye, style, ahk_id %c ... |
Topic: ifwinactive [windows 7 desktop]? |
jak
Replies: 8
Views: 498
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 3:32 am Subject: ifwinactive [windows 7 desktop]? |
AHK spy sees the desktop like any other explorer window.
See what this returns:loop
tooltip % "Desktop " ( winActive( "Program Manager" ) ? "A" : &q ... |
Topic: win7 quick launch toolbar icon |
jak
Replies: 6
Views: 400
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 3:29 am Subject: Re: win7 quick launch toolbar icon |
Its the big blue "e" icon shown here:
sorry, updated |
Topic: win7 quick launch toolbar icon |
jak
Replies: 6
Views: 400
|
Forum: Ask for Help Posted: Sun Jul 11, 2010 12:14 am Subject: win7 quick launch toolbar icon |
hi guys --
Trying to find the ahk_class and/or control for the IEXPLORE icon on the windows 7 "quick launch" toolbar.
Its the big blue "e" icon shown here:
http://www.gesti ... |
Topic: ifwinactive [windows 7 desktop]? |
jak
Replies: 8
Views: 498
|
Forum: Ask for Help Posted: Sat Jul 10, 2010 11:50 pm Subject: ifwinactive [windows 7 desktop]? |
hi gang,
what is the window title and/or class of the win7 desktop?
I want a hotkey that sends a series of keystrokes ONLY if the win7 desktop is showing and active.
WHen I use windows spy ut ... |
Topic: windows key combinations in windows 7 |
jak
Replies: 8
Views: 307
|
Forum: Ask for Help Posted: Sun Jul 04, 2010 4:51 am Subject: windows key combinations in windows 7 |
| Thats what send blind is supposed to do, allow any modifier keys pressed to affect the sent keys.For example, the hotkey +s::Send {Blind}abc would send ABC rather than abc because the user is holding ... |
| |