Search found 91 matches

by TheBeginner
09 Feb 2023, 03:39
Forum: Bug Reports
Topic: Hotkeys stop working after some time with 32-bit AHK on 64bit OS
Replies: 21
Views: 4436

Re: Hotkeys stop working after some time with 32-bit AHK on 64bit OS

swagfag I wonder if it's still the case (don't have the environment to check it) would you say that simply using the 64bit version mitigates the issue from your experience? (if it still exists) I'm asking because I didn't completely understand the findings, and if there's anything to do about it Le...
by TheBeginner
08 Feb 2023, 15:07
Forum: Bug Reports
Topic: Hotkeys stop working after some time with 32-bit AHK on 64bit OS
Replies: 21
Views: 4436

Re: Hotkeys stop working after some time with 32-bit AHK on 64bit OS

Hi @swagfag, do you know if this is still an issue or was it fixed somewhere along the way and the past three years?
by TheBeginner
05 Feb 2023, 03:43
Forum: Tutorials (v1)
Topic: How to do a strikethrough text in a GUI text component
Replies: 1
Views: 2149

How to do a strikethrough text in a GUI text component

there are some methods out there on how to do a strike through text in a GUI text component, some methods I have seen replace the letters with the equivalent pre-strike through unicode letters use an image with the text already strike through But there is a method of doing that without using pre-str...
by TheBeginner
01 Feb 2023, 07:19
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 117370

Re: UIAutomation with a focus on Chrome

@Descolada, thanks
the approach with the path works, I still don't understand how the progression in the path works (how you count objects along the path, as a sub-object counted? skipped?)
nevertheless it works 👍
by TheBeginner
31 Jan 2023, 03:00
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 117370

Re: UIAutomation with a focus on Chrome

this is what it captures when I use build the tree out of the window, it's the same thing that dump all fines but it is different then what hovering over the object fines you can see that the tree structure when hovering (previous image), and dumping gives different results (this one) image.png here...
by TheBeginner
31 Jan 2023, 01:59
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 117370

Re: UIAutomation with a focus on Chrome

Hi Descolada,, you've done an amazing work on this, something the community was really missing. and I also appreciate the time you invested in documenting everything in the wiki I do have a question I haven't been able to find an answer for if I have an chrome interface element that I can access and...
by TheBeginner
02 Jan 2023, 03:46
Forum: Ask for Help (v1)
Topic: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved
Replies: 10
Views: 875

Re: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved

First thank you both for your answers

it helped me understand better what what is happening in solve the issue, regarding the second issue it was unrelated to the code
the code works fine 🔥👍🔥
by TheBeginner
31 Dec 2022, 13:32
Forum: Ask for Help (v1)
Topic: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved
Replies: 10
Views: 875

Re: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved

I think it's there It's part of the process (DllCall( "GlobalUnlock", UInt,hData )) 👍 but there is another strange thing I don't know why its happening, I get the clipboard HTML format change change it and then set it back to the clipboard, but when I try to paste the content in google Docs in parti...
by TheBeginner
31 Dec 2022, 11:24
Forum: Ask for Help (v1)
Topic: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved
Replies: 10
Views: 875

Re: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved

I see what happened, once I freed the memory the same process couldn't access it anymore? is that what you're saying just me ? that means I'll need to free the clipboard after all processing is completed, yes? when I remove it it does seem to work 👍👍 wetware05 I didn't encounter any errors when runn...
by TheBeginner
31 Dec 2022, 09:41
Forum: Ask for Help (v1)
Topic: Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved
Replies: 10
Views: 875

Getting the HTML format from clipboard doesn't work when the function is run from this same script Topic is solved

I'm getting a strange behavior with this code, when I run s:: it assigns the HTML format to the clipboard (I can see the change with inspectclipboard tool) but when it tries to retrieve the HTML format from the clueboard ClipboardGet_HTML it returns as if there's no HTML format in the clipboard. the...
by TheBeginner
18 Dec 2022, 06:11
Forum: Suggestions on Documentation Improvements
Topic: Broken links from v1 to v2 docs & broken redirects Topic is solved
Replies: 20
Views: 3605

Re: Broken links from v1 to v2 docs & broken redirects Topic is solved

yeah, didn't know where to put it, as long as you know about it👍
you can still reach those pages through the topic navigation but not through the search
by TheBeginner
18 Dec 2022, 04:37
Forum: Suggestions on Documentation Improvements
Topic: Broken links from v1 to v2 docs & broken redirects Topic is solved
Replies: 20
Views: 3605

Bug on the site when clicking on some pages from search? Topic is solved

there seems to be a bug on the site when searching for a function and trying to click it on the result some return an error page
image.png
image.png (54.58 KiB) Viewed 2559 times
by TheBeginner
23 Sep 2022, 00:44
Forum: Ask for Help (v1)
Topic: translating a small C# code to AHK Topic is solved
Replies: 3
Views: 593

Re: translating a small C# code to AHK Topic is solved

what do I need to know, if I want to expand this functionality to know if the caret is inside a focused field (a field that is ready to be typed in)
I'm not sure it's within my skill but I could give it a try
by TheBeginner
14 Sep 2022, 01:22
Forum: Ask for Help (v1)
Topic: translating a small C# code to AHK Topic is solved
Replies: 3
Views: 593

Re: translating a small C# code to AHK Topic is solved

WOW!! Works perfectly with every application I've tested Finally a way to track the caret, there is probably even away to know if you are in a active text With the AccessibleObject approach but it's beyond my skill This will return the caret position even if the element or window is no longer in foc...
by TheBeginner
13 Sep 2022, 15:55
Forum: Ask for Help (v1)
Topic: translating a small C# code to AHK Topic is solved
Replies: 3
Views: 593

translating a small C# code to AHK Topic is solved

Anybody know how to translate this C# code into AHK, the code can retrieve the caret position from more modern applications, not just WPF/Win32/WinForms, rather Google Chrome or VS Code, Slack, etc. C# code Source with a bit more information > https://docs.microsoft.com/en-us/answers/questions/81864...
by TheBeginner
30 Jul 2022, 15:39
Forum: Ask for Help (v1)
Topic: Seems to be a bug in subtracting days
Replies: 5
Views: 1053

Re: Seems to be a bug in subtracting days

I think what threw me off is that I thought The timeunit in Var += Value , TimeUnits Was to tell AutoHotkey what's the time unit in the Value so it can Add or Subtract from the date-time stamp, but it seems that the timeunit is there to indicate in which units the Var will be stored Is my understand...
by TheBeginner
30 Jul 2022, 14:29
Forum: Ask for Help (v1)
Topic: Seems to be a bug in subtracting days
Replies: 5
Views: 1053

Re: Seems to be a bug in subtracting days

this is an actual example from the docs Var -= Value , TimeUnits if you use that example it will fail Var1 -= 1, days plus since this is how it works in the += why would it work differently in the subtraction? is there anything in the docs mentioning a exception for the subtraction method, I've read...
by TheBeginner
30 Jul 2022, 12:17
Forum: Ask for Help (v1)
Topic: Seems to be a bug in subtracting days
Replies: 5
Views: 1053

Seems to be a bug in subtracting days

subtraction doesn't work (says second parameter invalid) but adding does

Code: Select all

test := A_Now
test -= 1 , Days ; Doesn't work

; While this Does
test += 1 , Days ; works
bug?
by TheBeginner
10 Apr 2022, 03:15
Forum: Bug Reports
Topic: Unexpected keyup event sent by UP hotkeys Topic is solved
Replies: 7
Views: 3806

Re: Unexpected keyup event sent by UP hotkeys Topic is solved

Thanks Lexicos had to read like seven times to understand what you're saying :) If the a UP:: hotkey interrupts KeyWait, the line after KeyWait will not execute until a UP:: returns. but now I understand why it happened, also I was assuming a UP::Return will block the state as a::Return blocks a key.

Go to advanced search