Search found 6 matches

by califauna
02 Jun 2020, 06:03
Forum: Ask for Help (v1)
Topic: Wait untill neither of specified windows are active using regex
Replies: 7
Views: 470

Re: Wait untill neither of specified windows are active using regex

Thanks.

As I read the code its still not intuitive for me why that waits until neither are the active window, rather than EITHER of the two, but I'll play with some other scenarios and try to get used to it.
by califauna
01 Jun 2020, 19:37
Forum: Ask for Help (v1)
Topic: Wait untill neither of specified windows are active using regex
Replies: 7
Views: 470

Re: Wait untill neither of specified windows are active using regex

Using your code it works. I added ?: is it avoids saving the group Ableton 'Live Window Class|bitwig' into memory apparently: WinWaitNotActive, ahk_class (?:Ableton Live Window Class|bitwig) Somewhere down the line a logical NOR is getting created right? But where? The bar means 'bitwise-or' right, ...
by califauna
01 Jun 2020, 15:37
Forum: Ask for Help (v1)
Topic: Wait untill neither of specified windows are active using regex
Replies: 7
Views: 470

Re: Wait untill neither of specified windows are active using regex

You have two positive look-aheads meaning it will match when both are found (and not sure look-aheads are what you want). Aren't you just trying to allow one or the other like this? : WinWaitNotActive, ahk_class (Ableton Live Window Class|bitwig) I'm trying for WinWaitNotactive to return true and p...
by califauna
01 Jun 2020, 11:54
Forum: Ask for Help (v1)
Topic: Wait untill neither of specified windows are active using regex
Replies: 7
Views: 470

Wait untill neither of specified windows are active using regex

This works... SetTitleMatchMode, RegEx WinWaitActive, ahk_class (?:Ableton Live Window Class|bitwig) But later in the same script, this doesn't work... WinWaitNotActive, ahk_class (?=Ableton Live Window Class)(?=bitwig) It proceeds with the script, even when one of the windows is still active.
by califauna
20 Jun 2016, 18:14
Forum: Ask for Help (v1)
Topic: Changing scroll key for DragToScroll script
Replies: 2
Views: 1043

Re: Changing scroll key for DragToScroll script

Hi califauna, I was able to find a copy of the script and found that by adding these two sippits that the script seemed to work for keyboard keys. Disclaimer: I don't use the program myself so I only briefly tested the scrolling with default settings. At the top of the ButtonDown label: if(KeyIsDow...
by califauna
31 May 2016, 19:54
Forum: Ask for Help (v1)
Topic: Changing scroll key for DragToScroll script
Replies: 2
Views: 1043

Changing scroll key for DragToScroll script

Hi all, I'm trying to get this script working with a keyboard key instead of a mouse button: https://autohotkey.com/board/topic/55289-dragtoscroll-universal-drag-flingflick-scrolling/ Basically it allows horizontal and vertical scrolling with any document or app like Adobe's right click then drag to...

Go to advanced search