| Author |
Message |
Topic: How to Get the Paths of All Open Explorer Windows? |
instantrunoff
Replies: 2
Views: 55
|
Forum: Ask for Help Posted: Sun Feb 28, 2010 5:28 pm Subject: How to Get the Paths of All Open Explorer Windows? |
| Does someone have a trick for this? I bet there must be a clever way of doing this I just don't see. |
Topic: Variables to differentiate between 32 and 64 bit? |
instantrunoff
Replies: 4
Views: 260
|
Forum: Ask for Help Posted: Mon Feb 15, 2010 9:42 pm Subject: Variables to differentiate between 32 and 64 bit? |
| I think there needs to be variables to handle scripts so that they can run as expected whether on 32-bit Windows or 64-bit Windows. The workarounds are just too cumbersome and should just be integrate ... |
Topic: How to Maximize All Windows of Active Application? |
instantrunoff
Replies: 1
Views: 51
|
Forum: Ask for Help Posted: Sun Feb 14, 2010 11:27 pm Subject: How to Maximize All Windows of Active Application? |
I guess this works:
+CapsLock::
WinGet, mx, MinMax, A
If(mx = 0)
{
WinGetClass, gclass, A
g2max := A_TickCount
GroupAdd, %g2max%, ahk_class %gclass%
WinMaximi ... |
Topic: How to Maximize All Windows of Active Application? |
instantrunoff
Replies: 1
Views: 51
|
Forum: Ask for Help Posted: Sun Feb 14, 2010 11:23 pm Subject: How to Maximize All Windows of Active Application? |
I want to make a hotkey that will maximize all the windows of the active window's class or process, but only those windows. I tried the following, but the Group does not reset with each thread:
+Caps ... |
Topic: Why doesn't this work now that I have Windows 7 64-bit? |
instantrunoff
Replies: 7
Views: 224
|
Forum: Ask for Help Posted: Wed Nov 04, 2009 3:31 am Subject: Why doesn't this work now that I have Windows 7 64-bit? |
That would've been my second guess. :P
I believe it. Thank you. |
Topic: Why doesn't this work now that I have Windows 7 64-bit? |
instantrunoff
Replies: 7
Views: 224
|
Forum: Ask for Help Posted: Wed Nov 04, 2009 2:43 am Subject: It was the wrong control |
| It was the wrong control: SysListView321 is the folders list sidebar in Windows 7 Explorer. The main icon list area ClassNN is has changed to DirectUIHWND3. |
Topic: Why doesn't this work now that I have Windows 7 64-bit? |
instantrunoff
Replies: 7
Views: 224
|
Forum: Ask for Help Posted: Tue Nov 03, 2009 7:39 pm Subject: Why doesn't this work now that I have Windows 7 64-bit? |
I would guess that CabinetWClass is not valid in Win7.
According to AutoIt Window Spy, it is correct. |
Topic: Why doesn't this work now that I have Windows 7 64-bit? |
instantrunoff
Replies: 7
Views: 224
|
Forum: Ask for Help Posted: Tue Nov 03, 2009 7:22 pm Subject: Why doesn't this work now that I have Windows 7 64-bit? |
which part is it not working?
we dont have much win7 64bit users here, so u need to explain more
When I press Enter with a Windows Explorer window active and multiple items selected, nothing happe ... |
Topic: Why doesn't this work now that I have Windows 7 64-bit? |
instantrunoff
Replies: 7
Views: 224
|
Forum: Ask for Help Posted: Tue Nov 03, 2009 7:05 pm Subject: Why doesn't this work now that I have Windows 7 64-bit? |
The following worked to open multiple files of different file types in Vista 32-bit, but it doesn't work in Windows 7 64-bit. Any ideas why? Thank you.
#IfWinActive, ahk_class CabinetWClass
Enter& ... |
Topic: MsgBox: Countdown Display |
instantrunoff
Replies: 4
Views: 227
|
Forum: Ask for Help Posted: Tue Nov 03, 2009 5:56 pm Subject: MsgBox: Countdown Display |
loop, 5
MsgBox, 0, Title, % "Countdown stuff: " (6-A_Index), 1
Ah, genius! Thank you! |
Topic: MsgBox: Countdown Display |
instantrunoff
Replies: 4
Views: 227
|
Forum: Ask for Help Posted: Mon Nov 02, 2009 11:29 pm Subject: MsgBox: Countdown Display |
Please add a built-in variable to display the remaining seconds inside a MsgBox with a specified Timeout.
Example:
MsgBox, 1, Reboot, The system will reboot in %A_TimeRemaining%, 60
|
Topic: Scan Code as Hotkey Prefix |
instantrunoff
Replies: 1
Views: 145
|
Forum: Ask for Help Posted: Wed Oct 28, 2009 6:48 pm Subject: Scan Code as Hotkey Prefix |
| After a recent BIOS update, the Fn key on my Thinkpad now registers a scan code in the AHK window: 163. However, "SC163 &"-style hotkeys do not work. The keyboard hook is active. Any sug ... |
Topic: Send click to scrollbar, overriding Intellipoint |
instantrunoff
Replies: 0
Views: 93
|
Forum: Ask for Help Posted: Sat Sep 26, 2009 11:06 pm Subject: Send click to scrollbar, overriding Intellipoint |
| The Intellipoint software for my Microsoft mouse scrolls desirably using the scroll wheel except in a couple programs, one of which is Adobe Acrobat Pro 9.1.3. In that program, while viewing a pdf one ... |
Topic: real expose clone |
instantrunoff
Replies: 288
Views: 31786
|
Forum: Scripts & Functions Posted: Mon Sep 07, 2009 10:37 pm Subject: real expose clone |
To include minimized windows, I added the following two lines:
GroupAdd, AllWindows ; inserted at the autoexecute section at the top
WinRestore, ahk_group AllWindows ; inserted in the Window_Choose ... |
Topic: Firefox Scroll Wheel Problems |
instantrunoff
Replies: 1
Views: 269
|
Forum: Ask for Help Posted: Thu Aug 13, 2009 7:13 pm Subject: Firefox Scroll Wheel Problems |
| I am trying to have an accelerated scroll as mentioned elsewhere on the forum using the code below, which I have revised several times. Unfortunately, I cannot get the code to work reliably in Firefox ... |
| |