Search found 29 matches

by Coldblackice
15 Oct 2023, 00:20
Forum: Ask for Help (v1)
Topic: Possible to delay scrollwheel activating?
Replies: 5
Views: 508

Re: Possible to delay scrollwheel activating?

Then replace: Send,% "{Blind}{" SubStr(A_ThisHotkey,2) " " Counter "}" by: Send,% "{Blind}{" SubStr(A_ThisHotkey,2) "}" Thanks again for the help, I've been using this for the past 2+ years! Question: is it possible to "unrestrict" scrolling once it crosses the activation threshold? Currently, once...
by Coldblackice
20 Oct 2021, 16:04
Forum: Ask for Help (v1)
Topic: Possible to show a list of all currently open windows?
Replies: 2
Views: 400

Re: Possible to show a list of all currently open windows?

:arrow: WinGet • Example F3:: titles = WinGet, explorer, List, ahk_class CabinetWClass ahk_exe explorer.exe Loop, %explorer% { WinGetTitle, wTitle, % "ahk_id " explorer%A_Index% titles .= "`n" wTitle } MsgBox, 64, Explorer titles, % titles := SubStr(titles, 2) Return Wow, didn't think this could be...
by Coldblackice
11 Oct 2021, 06:35
Forum: Ask for Help (v1)
Topic: Possible to show a list of all currently open windows?
Replies: 2
Views: 400

Possible to show a list of all currently open windows?

Is there a way to show all currently open windows, program windows + most of all, Windows explorer/folder windows? I recall someone making a sort of AHK control panel years back with various multi-functions, one of which being a sortable list of all currently open Windows folder windows + program wi...
by Coldblackice
29 May 2021, 11:22
Forum: Ask for Help (v1)
Topic: Possible to delay scrollwheel activating?
Replies: 5
Views: 508

Re: Possible to delay scrollwheel activating?

Hallo, perhaps: Counter = 0 Return *WheelUp:: *WheelDown:: IF ++Counter < 2 ; or 3 or 4 { SetTimer, Counter, -500 Return } Send,% "{Blind}{" SubStr(A_ThisHotkey,2) " " Counter "}" Counter: Counter = 0 Return Awesome, thanks! I appreciate it. Is there a way to make it discard the initial "pre" scrol...
by Coldblackice
26 May 2021, 02:26
Forum: Ask for Help (v1)
Topic: Possible to delay scrollwheel activating?
Replies: 5
Views: 508

Possible to delay scrollwheel activating?

Would it be possible to delay mouse scrolling from activating unless there's been X amount of scrolling? I have a G502 and the infinity/free-scroll wheel activates way too easily, resulting in frequent "micro" scrolls up and down things when I wasn't even scrolling, particularly when moving my mouse...
by Coldblackice
17 Nov 2020, 01:13
Forum: Ask for Help (v1)
Topic: Anyone know of this old AHK script for Windows....?
Replies: 1
Views: 236

Anyone know of this old AHK script for Windows....?

I'm looking for a script that I can't find for the life of me. Probably 7-10 years back, I wanted to make a script to show all currently open Windows Explorer windows, and then be able to save that list, giving the option of restoring whatever list of explorer/folder windows open after rebooting. So...
by Coldblackice
06 Oct 2020, 22:44
Forum: Ask for Help (v1)
Topic: Problem witih "framerate" when dragging windows with AHK
Replies: 3
Views: 332

Re: Problem witih "framerate" when dragging windows with AHK

Hi Try replace: SetWinDelay,2 by SetWinDelay,0 or SetWinDelay,-1 (not tested) A_AhkUser This worked perfectly! Setting this to "0" did the trick, thanks for that. The only issue now is the resizing function: when resizing, the area of the newly-expanded area of window is blank/white until you let g...
by Coldblackice
20 Sep 2020, 20:44
Forum: Ask for Help (v1)
Topic: Can Windows Z-order be manipulated (without the GUI)?
Replies: 2
Views: 523

Can Windows Z-order be manipulated (without the GUI)?

Years back, I wanted to make a script that could manipulate the Z-ordering of windows in Windows. I wanted to make script function/ability to selectively "push down" or "pull up" any window up or down through the Windows Z-order layers. It would be like if we had the ability to rearrange program win...
by Coldblackice
20 Sep 2020, 20:32
Forum: Ask for Help (v1)
Topic: Problem witih "framerate" when dragging windows with AHK
Replies: 3
Views: 332

Problem witih "framerate" when dragging windows with AHK

I use an AHK script "KDE Window Drag" which enables moving/resizing windows (in Windows) by mouse click-and-dragging anywhere inside a window instead of having to click-and-hold the window's title bar (for moving) or the razor-thin window borders (for resizing). The script works, however, the visual...
by Coldblackice
10 Feb 2020, 20:58
Forum: SciTE4AutoHotkey
Topic: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]
Replies: 835
Views: 615059

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

Is there a "Restore previously opened files" option? I rely on this feature a lot in other software, from web browsers to code editors to Acrobat PDFs, etc. It'd be great if SciTE4AHK could do those, reopening whatever scripts were open at time of closing. I keep a number of scripts open in the edit...
by Coldblackice
15 Oct 2019, 18:09
Forum: Ask for Help (v1)
Topic: Is it possible to interact with Windows Alt-Tab functionality?
Replies: 0
Views: 546

Is it possible to interact with Windows Alt-Tab functionality?

I'd like to add some much-needed functionality into Alt-Tabbing in Windows. I'm wondering if it's possible to programmatically interface with the Alt-Tab functionality + popup menu without mere scripted manual keyboard input . Is there an API or some other direct way to be able to pull Alt-Tab puppe...
by Coldblackice
15 Oct 2019, 18:03
Forum: Ask for Help (v1)
Topic: Can GroupAdd only be used at the beginning of a script?
Replies: 2
Views: 681

Re: Can GroupAdd only be used at the beginning of a script?

Ah, got it. That makes sense. Thanks very much for the explanation + example!
by Coldblackice
14 Oct 2019, 18:44
Forum: Ask for Help (v1)
Topic: Can GroupAdd only be used at the beginning of a script?
Replies: 2
Views: 681

Can GroupAdd only be used at the beginning of a script?

I have a script I've been customizing (below), and am trying to GroupAdd multiple web browsers into a group so that a few text auto-expands only apply to those browsers. I'm finding, however, that GroupAdd only seems to work at the top of the script. As soon as the script reaches one of the keyboard...
by Coldblackice
01 Feb 2016, 23:28
Forum: Ask for Help (v1)
Topic: How can a script simply mouseclick a window edge?
Replies: 4
Views: 1628

Re: How can a script simply mouseclick a window edge?

I use this in WindowPad (the comments are from at least 3 years ago): ; Explorer uses WM_EXITSIZEMOVE to detect when a user finishes moving a window ; in order to save the position for next time. May also be used by other apps. PostMessage, 0x232 In this case, the Last Found Window had been set to ...
by Coldblackice
28 Jan 2016, 18:02
Forum: Ask for Help (v1)
Topic: How can a script simply mouseclick a window edge?
Replies: 4
Views: 1628

How can a script simply mouseclick a window edge?

I've been using a KDE window resize script for a while. An issue with it, however, is that Windows 7 doesn't remember the new size of the window. Researching this, I discovered that this script is bypassing the way Windows tracks new size changes -- clicking and dragging the edge of a window. I find...
by Coldblackice
30 Aug 2015, 22:18
Forum: Tips and Tricks (v1)
Topic: GeekDude's Tips, Tricks, and Standalones
Replies: 34
Views: 32125

Re: GeekDude's tips and tricks

Cool thread, thanks!
by Coldblackice
12 Apr 2015, 16:20
Forum: Ask for Help (v1)
Topic: Possible to trigger a GUI's function without using the GUI?
Replies: 1
Views: 1056

Possible to trigger a GUI's function without using the GUI?

Is it possible to trigger a GUI's function without actually interacting with the GUI? Like "puppet-stringing" the behind-the-GUI function, essentially bypassing the GUI entirely. For example, in Internet Explorer, pressing F12 brings up the Developer Tools pane. Inside this pane, there's a button ca...
by Coldblackice
22 Jan 2015, 13:45
Forum: Ask for Help (v1)
Topic: Possible to limit to when user is typing in URL address bar?
Replies: 1
Views: 1326

Possible to limit to when user is typing in URL address bar?

Would it be possible to limit a script from acting except only when the user is typing in the URL address bar of Internet Explorer? I have some things that I want to be done, but only when the user is typing in the address bar.

If possible, how would I go about it?
by Coldblackice
06 Jul 2014, 20:00
Forum: SciTE4AutoHotkey
Topic: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]
Replies: 835
Views: 615059

Re: SciTE4AutoHotkey v3.0.05.01 [Updated April 5 2014]

Bug: When right-clicking on a tab, "Open containing folder" isn't working. In fact, none of the options from that block work.

Request: When right-clicking a tab, an option to "Rename script" without having to save a new copy

Go to advanced search