Search found 2337 matches

by HotKeyIt
21 Apr 2022, 19:21
Forum: Scripts and Functions (v2)
Topic: [v2] Yaml and JSON parser
Replies: 32
Views: 14512

Re: [v2] Yaml and JSON parser

There are default properties like length, __Item, Capacity, Count, CaseSense, Default, base... that would cause problems if used in yaml or json.
by HotKeyIt
21 Apr 2022, 07:29
Forum: Scripts and Functions (v2)
Topic: [v2] Yaml and JSON parser
Replies: 32
Views: 14512

Re: [v2] Yaml and JSON parser

In v2 accessing properties and Items is separated and Map + Array have Items and Properties at the same time, also in obj.1 the key 1 is as a string and in obj[1] the key 1 is a number! You can try somthing like this but will be only for reading and rather slow: m:=Map(1,2,3,4,5,6,7,8) j:=EASYJSON(m...
by HotKeyIt
07 Apr 2022, 10:51
Forum: Помощь
Topic: Автоматизация нажатия
Replies: 56
Views: 86946

Re: Автоматизация нажатия

Code: Select all

N::pause:=1
*LButton::
    pause:=0
    while pause=0 && GetKeyState("vk01", "P")
    {
        MouseClick, left,,, 1, 99, D
        Sleep 62
        MouseClick, left,,, 1, 99, U
        Sleep 58
    }
    pause:=0
    return
by HotKeyIt
31 Mar 2022, 15:07
Forum: Ask for Help
Topic: ControlSend-ing on different threads, but still waits for previous to finish.
Replies: 1
Views: 1011

Re: ControlSend-ing on different threads, but still waits for previous to finish.

Can you share you script or show an example, why do you think the threads are waiting?
by HotKeyIt
19 Feb 2022, 19:38
Forum: Ask for Help
Topic: AHK_H Prepare code on thread, then run it Topic is solved
Replies: 4
Views: 2034

Re: AHK_H Prepare code on thread, then run it Topic is solved

I normally load all the required code in each thread so I can use it whenever I need it, try that.
You can execute the code you added later, use ExecuteLine (addScript will return the added line pointer) or ahkLabel.
by HotKeyIt
19 Feb 2022, 07:24
Forum: Ich brauche Hilfe
Topic: AHK_H-Problem mit Umlauten unter Windows 7 auf VMWare Topic is solved
Replies: 13
Views: 2076

Re: AHK_H-Problem mit Umlauten unter Windows 7 auf VMWare Topic is solved

Ist der Virtual PC auf Deutsch eingestellt?

Edit:
Was bekommst du hier: MsgBox GetACP()
by HotKeyIt
19 Feb 2022, 07:19
Forum: Ich brauche Hilfe
Topic: AHK_H-Problem mit Umlauten unter Windows 7 auf VMWare Topic is solved
Replies: 13
Views: 2076

Re: AHK_H-Problem mit Umlauten unter Windows 7 auf VMWare Topic is solved

Benutzt du die ANSI Version von AHK_H?
Das muss definitiv mit Systemeinstellung zu tun haben, wenn du magst können wir mal über TeamViewer uns anschauen.

Edit:
Du kannst auch gerne AHK_L probieren, sollte das Problem auch kommen.
by HotKeyIt
12 Feb 2022, 06:36
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3384

Re: Possible issue: compiling with password in newer versions

Ok, got it, for your own password you have to recompile AHK_H with that password before you can use it!
by HotKeyIt
11 Feb 2022, 13:47
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3384

Re: Possible issue: compiling with password in newer versions

Can you try simple MsgBox script.
by HotKeyIt
11 Feb 2022, 09:10
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3384

Re: Possible issue: compiling with password in newer versions

Try again, I recompiled it with C++17.
by HotKeyIt
11 Feb 2022, 07:28
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3384

Re: Possible issue: compiling with password in newer versions

Please try latest version (1.1.33.10)
by HotKeyIt
08 Feb 2022, 21:45
Forum: Ask for Help
Topic: which function can exit thread in ahk_h beta3?
Replies: 4
Views: 1620

Re: which function can exit thread in ahk_h beta3?

This has been fixed now.
by HotKeyIt
07 Feb 2022, 08:31
Forum: Ask for Help
Topic: which function can exit thread in ahk_h beta3?
Replies: 4
Views: 1620

Re: which function can exit thread in ahk_h beta3?

It is still ahkTerminate, I forgot to add it to docs, updated now, see NewThread.

Code: Select all

ahk:=NewThread("MsgBox 'Thread'")
Sleep 1000
ahk.ahkterminate()
MsgBox 'End'
by HotKeyIt
24 Jan 2022, 21:07
Forum: AutoHotkey_H
Topic: About AHK_H - Downloads, Updates, Changes etc. v1 & v2
Replies: 21
Views: 31818

Re: About AHK_H - Downloads, Updates, Changes etc. v1 & v2

Many thanks thqby for merging AHKH_v2 beta ;) Download AutoHotkey_H v2 beta 3 . AutoHotkey.dll multi-threading AutoHotkey.dll supports now multi-threading like AutoHotkey.exe does. So you can now use NewThread everywhere to create a thread. AhkThread etc. have been removed. AutoHotkey COM Interface ...
by HotKeyIt
28 Dec 2021, 04:43
Forum: Ask for Help
Topic: AHK_H compiler issue
Replies: 3
Views: 2017

Re: AHK_H compiler issue

Can you try running as admin?

Go to advanced search