Search found 102 matches

by Ralf_Reddings200244
Today, 09:24
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 323
Views: 113732

Re: MouseGestureL

Pyonkichi Is it possible to get a gesture like RB_LB_8_ / RB_LB_8__ to fire when LB is released, rather than when RB is released, and then have MGL reset, as If I manually released RB and then held it back down again? I was able to get RB_LB_8_ to fire when LB is released but MGL does not reset its...
by Ralf_Reddings200244
18 May 2024, 18:11
Forum: Ask for Help (v1)
Topic: After the first time, How to skip over a expensive calculation and just operate on the result with each subsequent wheel Topic is solved
Replies: 2
Views: 403

After the first time, How to skip over a expensive calculation and just operate on the result with each subsequent wheel Topic is solved

I have a function that I need to use on a number of scroll wheel hotkeys, the function increases or decreases a value on controls found on a inactive window, the following is a use case example: a & WheelUp:: ;increment control #1 lazy_rulers("++", 1, "a") return a & WheelDown:: ;decrement control #...
by Ralf_Reddings200244
17 May 2024, 16:03
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 122599

Re: UIAutomation with a focus on Chrome

@Descolada
No I did not try click() but I tried it after your suggestion I did, it seems to only work if the drop down panel is open but I think I will go with an alternative design using FindText, at least for setting the state of the widnow.

Cheers!
by Ralf_Reddings200244
16 May 2024, 16:46
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 122599

Re: UIAutomation with a focus on Chrome

Help with selecting a item from a drop down control please I have this control on this window that uses QT 5 framework, much to my surprise, almost all of the controls on this window, has full UIA support, with click/get/set etc. I am struggling to work with drop down type of controls though, I was ...
by Ralf_Reddings200244
15 May 2024, 16:53
Forum: Wish List
Topic: Make Arrays Useful
Replies: 2
Views: 659

Re: Make Arrays Useful

Yes please, these would be so usefull to have. I was actually hoping some of these would be pressent in V2.
by Ralf_Reddings200244
05 May 2024, 09:16
Forum: Ask for Help (v1)
Topic: Is it possible to create this kind of data in AutoHoktey?
Replies: 5
Views: 314

Re: Is it possible to create this kind of data in AutoHoktey?

@mikeyww
@Chunjee
Pardon me, I was using my personal v1 function wrappers for commands, I fixed them now.


@Chunjee
Thanks for that! I will take a look at the library you linked to!
by Ralf_Reddings200244
05 May 2024, 08:58
Forum: Ask for Help (v1)
Topic: Is it possible to create this kind of data in AutoHoktey?
Replies: 5
Views: 314

Is it possible to create this kind of data in AutoHoktey?

I need to create a function that will take a window and resize it or restore its initial size. I am stuck on the part of recording the windows initial position and size, so I can restore its initial position later on. Here is what I have: win_snapToMonitor(winTitle := "a", subCommand := ""){ static ...
by Ralf_Reddings200244
11 Apr 2024, 11:06
Forum: Ask for Help (v1)
Topic: Is possible to create a class with constructor overloads? Topic is solved
Replies: 2
Views: 155

Re: Is possible to create a class with constructor overloads? Topic is solved

@ShatterCoder
Thanks, I am glad to know conclusively and the reasoning behind it too. Cheers!
by Ralf_Reddings200244
08 Apr 2024, 17:31
Forum: Ask for Help (v1)
Topic: Is possible to create a class with constructor overloads? Topic is solved
Replies: 2
Views: 155

Is possible to create a class with constructor overloads? Topic is solved

For example if I have a class that constructs a Timecode object, I would like to sometimes initialise a instance by just providing a value for a single parameter ( frameCount ) and other times provide more than one parameter such as frameCount and frameRate . Here is what I tried: obj := new timecod...
by Ralf_Reddings200244
08 Apr 2024, 16:47
Forum: Ask for Help (v1)
Topic: struggling to follow the documentation, accessing a objects properties inside its method Topic is solved
Replies: 3
Views: 233

struggling to follow the documentation, accessing a objects properties inside its method Topic is solved

I am trying to understand, the Protoypes section of the objects page, here is what I have: obj := {} obj.prop := 10 obj.meth := func("myMeth") obj.meth(10) print(obj.prop) myMeth(inp){ print("inside myMeth()") ;To confirm if method is called print(this.prop) ;should print "10" this.prop := this.prop...
by Ralf_Reddings200244
08 Apr 2024, 09:00
Forum: Ask for Help (v1)
Topic: Get the monitor number that the mouse is in? Topic is solved
Replies: 4
Views: 227

Re: Get the monitor number that the mouse is in? Topic is solved

wow you guys, I was not expecting to so much help. Thank you to all of you. All three answers gave me what I needed! Cheers!
by Ralf_Reddings200244
07 Apr 2024, 18:06
Forum: Ask for Help (v1)
Topic: Get the monitor number that the mouse is in? Topic is solved
Replies: 4
Views: 227

Get the monitor number that the mouse is in? Topic is solved

For some time now, I have been using the function, GetMonitorIndexFromWindow() by shinywong, to get the monitor number , the window is inside of, its very reliable. GetMonitorIndexFromWindow(windowHandle) { ; Starts with 1. monitorIndex := 1 VarSetCapacity(monitorInfo, 40) NumPut(40, monitorInfo) if...
by Ralf_Reddings200244
05 Apr 2024, 09:17
Forum: Scripts and Functions (v1)
Topic: TapHoldManager - Long Press / Multi Tap / Multi Tap and Hold / Any number of Taps / Multi-Keyboard / Joystick buttons
Replies: 113
Views: 46347

Re: TapHoldManager - Long Press / Multi Tap / Multi Tap and Hold / Any number of Taps / Multi-Keyboard / Joystick button

@evilC
This is great news! I am glad you have plans to continue with this project and adopt AutoHotkey V2. Made my week! Looking forward to it
by Ralf_Reddings200244
01 Apr 2024, 12:19
Forum: Scripts and Functions (v2)
Topic: Activate the most recently used window || Get list of Alt-Tab windows per monitor || Alt-Esc replacement using z-order
Replies: 2
Views: 872

Re: Activate the most recently used window || Get list of Alt-Tab windows per monitor || Alt-Esc replacement using z-ord

@iseahound
Hey Isea, any chance we can get a AHKV1 release of this function too? I am stuck with V1 for work related reasons and I really need this function, I have not been able to find anything equivalent with regards to working with Z-Order. Please consider it.

Cheers.
by Ralf_Reddings200244
29 Mar 2024, 14:42
Forum: Ask for Help (v1)
Topic: ControlClicking on a window hidden by 'winHide'? Topic is solved
Replies: 3
Views: 201

Re: ControlClicking on a window hidden by 'winHide'? Topic is solved

@gregster
I had my functions and commands mixed, I am stuck between v1 and v2 unfortunetly...

I completely missed that part of the documentation and sure enough my tests confirm your findings. Thank you!
by Ralf_Reddings200244
28 Mar 2024, 14:27
Forum: Ask for Help (v1)
Topic: ControlClicking on a window hidden by 'winHide'? Topic is solved
Replies: 3
Views: 201

ControlClicking on a window hidden by 'winHide'? Topic is solved

This is not a script issue per se and for that matter is not limited to either V1 or V2 of the language but its something I would like to ask and see if others have had any luck with it This is something that AutoIt can apparently do, Send ControlClick to Hidden Window? . My tests with AHK tells me ...
by Ralf_Reddings200244
27 Mar 2024, 12:49
Forum: Ask for Help (v1)
Topic: Plaqued by 'Expression too long' error Topic is solved
Replies: 2
Views: 179

Re: Plaqued by 'Expression too long' error Topic is solved

@ShatterCoder

Thank you for this, it works as expected now!
by Ralf_Reddings200244
26 Mar 2024, 15:33
Forum: Ask for Help (v1)
Topic: Plaqued by 'Expression too long' error Topic is solved
Replies: 2
Views: 179

Plaqued by 'Expression too long' error Topic is solved

I am working on two functions, GetToolbar() and SetToolbar() to control Adobe Illustrator's toolbar panel in a much more efficient way and to implement features such as spring loaded tools, which illustrator still does not have . I figured out everything I am just stuck on this error I that AutoHotk...

Go to advanced search