Search found 3461 matches

by guest3456
03 Feb 2024, 12:30
Forum: Scripts and Functions (v1)
Topic: v1 -> v2 Script Converter
Replies: 146
Views: 72756

Re: v1 -> v2 Script Converter

Would there be interest in a hosted version of this conversion tool? I should be able to pull all the code into the wiki sandbox (https://autohotkey.wiki/cloudahk) and write some front-end code to provide a diffing interface like shown in the original post. This should allow people to use the tool ...
by guest3456
28 Jan 2024, 09:26
Forum: About This Community
Topic: New subforum for Keysharp
Replies: 26
Views: 4338

Re: New subforum for Keysharp

boiler wrote:
15 Jan 2024, 12:45
I say no, not because it's not important, but it's really just one thread, and we don't need/want a whole sub-forum for just a thread.
+1
by guest3456
25 Jan 2024, 12:41
Forum: Bug Reports
Topic: Exploit PoCs
Replies: 36
Views: 2348

Re: Exploit PoCs

reminds me of jeeswg
by guest3456
17 Jan 2024, 11:17
Forum: Ask for Help (v2)
Topic: [v2.0.11; v2.1-alpha.8] Command Syntax doesn't work when there are brackets in the command?
Replies: 7
Views: 576

Re: [v2.0.11; v2.1-alpha.8] Command Syntax doesn't work when there are brackets in the command?

just me wrote:
16 Jan 2024, 07:29
(I always voted to remove the 'command syntax' as far as possible in v2!)
+1
when i was initially building the v2 converter i would never convert to the command syntax variant, to discourage users from using it. not sure what other contributors have done since
by guest3456
08 Jan 2024, 02:00
Forum: Ask for Help (v1)
Topic: Run command works from source and U64-compiled but fails U32-compiled - Compiler Bug?
Replies: 22
Views: 1804

Re: Run command works from source and U64-compiled but fails U32-compiled - Compiler Bug?

just ran into this mind boggling issue myself add this line before the Run command worked: Based on what gregster said, you could try this: if A_Is64bitOS && (A_PtrSize!=8) DllCall("kernel32\Wow64DisableWow64FsRedirection", "Ptr*",0) ------ When you launch a shortcut file with ShellExecuteEx, most l...
by guest3456
08 Nov 2023, 13:12
Forum: Ask for Help (v1)
Topic: How to Read Gmail Inbox?
Replies: 1
Views: 392

Re: How to Read Gmail Inbox?

bump
by guest3456
17 Oct 2023, 10:21
Forum: Wish List
Topic: Option to terminate and restart thread when called again
Replies: 4
Views: 1513

Re: Option to terminate and restart thread when called again

^this

post code and reproduceable example
by guest3456
03 Oct 2023, 13:31
Forum: Scripts and Functions (v2)
Topic: Pulover's Macro Creator for v2 [mod]
Replies: 23
Views: 6866

Re: Pulover's Macro Creator for v2 [mod]

guest3456 wrote:
04 May 2023, 12:34
you've added MIT license but you are required by the GPL to keep your derivative work also as GPL. you should also keep Pulover's original license and copyright in the main dir
^

this project is still ILLEGALLY licensed as of the time of this post
by guest3456
24 Sep 2023, 00:39
Forum: Ask for Help (v2)
Topic: MouseGetPos does not include DPI scalling but gui.move does Topic is solved
Replies: 4
Views: 605

Re: MouseGetPos does not include DPI scalling but gui.move does Topic is solved

does adding this line to the top of your script fix it?

Code: Select all

DllCall("SetThreadDpiAwarenessContext", "ptr", -3, "ptr")
(from this thread)
by guest3456
20 Sep 2023, 16:22
Forum: Scripts and Functions (v2)
Topic: AHK2 comma after loop / sleep, Warns, Template
Replies: 5
Views: 896

Re: AHK2 comma after loop / sleep, Warns, Template

@theyakutoo : Could you please explain with some words, what your code is actually doing? At first I was laughing - then, out of curiosity, I tested it... and, as expected, NOTHING happens. But I'm by far no AHK expert, to be honest. So please explain, thank you! :-) its two hotstrings. open notepa...
by guest3456
17 Sep 2023, 13:01
Forum: General Discussion
Topic: What is the best way to learn AHK? Topic is solved
Replies: 7
Views: 1852

Re: What is the best way to learn AHK? Topic is solved

hieveryone wrote:
06 Sep 2023, 06:07
What is the best way to learn AHK?
write scripts to solve problems that you are having personally
by guest3456
27 Aug 2023, 15:21
Forum: Off-topic Discussion
Topic: Allman style v. K&R style/one true brace style
Replies: 13
Views: 19528

Re: Allman style v. K&R style/one true brace style

Another variation of the Allman style, that perhaps should be mentioned, is putting all of the ending braces at the bottom on the same line. In fact, I remember seeing this style a few times over the years on the forum. I like it, but stuck with the traditional Allman style, as go back and forth wi...
by guest3456
18 Aug 2023, 03:37
Forum: Bug Reports
Topic: window matching bug Topic is solved
Replies: 7
Views: 1141

Re: window matching bug Topic is solved

ahhh got it
by guest3456
17 Aug 2023, 09:39
Forum: Bug Reports
Topic: window matching bug Topic is solved
Replies: 7
Views: 1141

Re: window matching bug Topic is solved

This also results in funny behavior such as titlevar := repeatAs(1022) . "|r" matching any Notepad window, not only ones containing the letter "r" or 1022 "a"-s. ah yes i was noticing weird stuff like this too. so in fact even the first call in my test script above was failing too, just in a differ...
by guest3456
17 Aug 2023, 01:08
Forum: Bug Reports
Topic: window matching bug Topic is solved
Replies: 7
Views: 1141

window matching bug Topic is solved

been pulling my hair out for hours now, running into issues trying to match windows with regex match mode. i have some pretty long regexes with|multiple|options|etc and ive been trying to reduce the code as much as possible to narrow down the bug am i retarded? this code works on first call, and the...
by guest3456
10 Aug 2023, 13:00
Forum: Ask for Help (v2)
Topic: Multiple monitors, different DPI, getting the wrong resolution Topic is solved
Replies: 3
Views: 416

Re: Multiple monitors, different DPI, getting the wrong resolution Topic is solved

crocodile wrote:
10 Aug 2023, 11:31
Two "3840*2160" monitors in "[2] [1]" arrangement, DPI of [2] is 150%, DPI of [1] is 175%.
...
Is this a bug, or is it because AutoHotkey.exe lacks certain process information?
not exactly a bug

explanation and workaround:

https://www.autohotkey.com/boards/viewtopic.php?t=13810
by guest3456
05 Aug 2023, 15:46
Forum: Scripts and Functions (v1)
Topic: v1 -> v2 Script Converter
Replies: 146
Views: 72756

Re: v1 -> v2 Script Converter

Hi there Guest3456. Thanks for making this excellent tool and sharing it. I had assumed that mmikeww was the same person as the forum user mikeyww, but I guess not. Anyway, should possible bugs by discussed here on this forum thread, or should we just post here: https://github.com/mmikeww/AHK-v2-sc...
by guest3456
26 Jul 2023, 00:28
Forum: Scripts and Functions (v2)
Topic: GDI+ v2
Replies: 16
Views: 10790

Re: GDI+ v2

So here's my challenge: provide one pair of AHK and GDIP releases that are compatible AND give me specific download urls for both. the library in the first post literally says what versions of AHK it requires. it hasn't been updated in a while, so the compatible versions are a bit outdated. then yo...
by guest3456
24 Jul 2023, 14:53
Forum: Off-topic Discussion
Topic: Lexikos Lexicos
Replies: 6
Views: 4583

Re: Lexikos Lexicos

finkle is einhorn?
by guest3456
18 Jul 2023, 11:00
Forum: Off-topic Discussion
Topic: Fork version1 and let those who like version2 use on their own.
Replies: 2
Views: 3433

Re: Fork version1 and let those who like version2 use on their own.

why fork? lexikos is still fixing bugs for v1 and majority of people still use v1. its not going anywhere any time soon

Go to advanced search