Search found 340 matches

by kyuuuri
01 May 2020, 12:44
Forum: Off-topic Discussion
Topic: University Study about AHK ...
Replies: 4
Views: 2111

Re: University Study about AHK ...

I can read Portuguese but I don't consider myself very good at it. From what I read, I really liked it. I have to be honest, I didn't read the entire text but I picked some sections and I really liked it. Thank you for doing it about AutoHotkey!
by kyuuuri
29 Apr 2020, 00:30
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

Hello, that's the hard part. You and I won't be able to reproduce the exact same issue but I have around 15 users having this problem right now. When calling ahkThread() all of them get stuck on this line: obj:={(""):lib:=MemoryLoadLibrary(dll=""?&ahkdll:dll="FC2328B39C194A4788051A3B01B1E7D5"?&ahkmi...
by kyuuuri
28 Apr 2020, 12:46
Forum: AutoHotkey_H
Topic: What are the dependencies for ahkThread()?
Replies: 4
Views: 1867

Re: What are the dependencies for ahkThread()?

I will take a look later if I can reproduce Thank you! If you need anything feel free to pm me, I think you got my discord's name as well (from the last time about CryptAES). It's sad I can't reproduce the exact same problem on my pc, because that would be easier to solve. But at least if you need ...
by kyuuuri
28 Apr 2020, 11:47
Forum: AutoHotkey_H
Topic: What are the dependencies for ahkThread()?
Replies: 4
Views: 1867

Re: What are the dependencies for ahkThread()?

Only Microsoft Visual C++ 2015 is required and could cause problems if missing, vcredist 2015-2019 should be fine as well. Well them I'm clueless about this https://www.autohotkey.com/boards/viewtopic.php?f=65&t=74505 . I managed to find the exact line of code that causes the problem but I can't fi...
by kyuuuri
28 Apr 2020, 07:02
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

Could narrow the issue down to this line: obj:={(""):lib:=MemoryLoadLibrary(dll=""?&ahkdll:dll="FC2328B39C194A4788051A3B01B1E7D5"?&ahkmini:dll),base:base} The last msgbox executed is "msgbox B", seems that there is a problem with MemoryLoadLibrary. From: ahkthread_free(obj:=""){ static objects if !o...
by kyuuuri
28 Apr 2020, 06:10
Forum: AutoHotkey_H
Topic: What are the dependencies for ahkThread()?
Replies: 4
Views: 1867

What are the dependencies for ahkThread()?

Hello, I'm trying to find the cause of this problem: https://www.autohotkey.com/boards/viewtopic.php?f=65&t=74505 . Because 100% of my clients that have this problem have w10 fully updated and around 30% of my other clients (including me) have the same w10 fully updated and can run it without any pr...
by kyuuuri
27 Apr 2020, 19:20
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

HotKeyIt Seems like I found out how to reproduce the problem. 1. Download ahkdll-v1-release-master from: https://github.com/HotKeyIt/ahkdll-v1-release and extract on desktop 2. Create a folder called "New Folder" on Desktop. 3. Inside the folder create an script called "test.ahk" 4. Inside this scr...
by kyuuuri
27 Apr 2020, 18:52
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

New user with the same problem. Windows 10 Home Version: 1903 Build: 18362.778 I asked him to send me a list of his updates: Caption CSName Description FixComments HotFixID InstallDate InstalledBy InstalledOn Name ServicePackInEffect Status http://support.microsoft.com/?kbid=4534132 DESKTOP-OE24P1O ...
by kyuuuri
27 Apr 2020, 18:29
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

Tried more things, but still it will freeze the script when launching a new thread
by kyuuuri
25 Apr 2020, 15:03
Forum: Ask for Help
Topic: Can't get INPUT to work using Struct Topic is solved
Replies: 10
Views: 3069

Re: Can't get INPUT to work using Struct Topic is solved

The pointer of Struct is returned by using mystruct[] instead of &mystruct . On creation all fields are set to 0 and you can also initialize the Struct directly: Struct(INPUT,,{mi:{dwFlags:0x2}}) Also no need to create Struct every time. INPUT := " ( DWORD type; MOUSEINPUT mi; )" MOUSEINPUT := " ( ...
by kyuuuri
25 Apr 2020, 14:48
Forum: Ask for Help
Topic: Can't get INPUT to work using Struct Topic is solved
Replies: 10
Views: 3069

Re: Can't get INPUT to work using Struct Topic is solved

Hi, thank you! it's fixed that
swagfag wrote:
25 Apr 2020, 09:44
for v2 if u implemented the addressof struct as a .Ptr property, u could pass it to DllCall as is
Using v1 for now, still good info didn't know that about v2. Thank you
by kyuuuri
25 Apr 2020, 08:31
Forum: Ask for Help
Topic: Can't get INPUT to work using Struct Topic is solved
Replies: 10
Views: 3069

Re: Can't get INPUT to work using Struct Topic is solved

Tried this code as well: f1:: INPUT := " ( DWORD type; MOUSEINPUT mi; )" MOUSEINPUT := " ( LONG dx; LONG dy; DWORD mouseData; DWORD dwFlags; DWORD time; ULONG_PTR dwExtraInfo; )" Data := Struct(INPUT) Data.type := 0 Data.mi.dwFlags := 0x0002 DllCall("SendInput", "UInt", 1, "Ptr", &Data, "Int", sizeo...
by kyuuuri
25 Apr 2020, 08:17
Forum: Ask for Help
Topic: Can't get INPUT to work using Struct Topic is solved
Replies: 10
Views: 3069

Can't get INPUT to work using Struct Topic is solved

Hello, I'm trying to create an INPUT structure. Related links: https://docs.microsoft.com/es-es/windows/win32/api/winuser/ns-winuser-input and https://docs.microsoft.com/es-es/windows/win32/api/winuser/ns-winuser-mouseinput This is my code: /* typedef struct tagINPUT { DWORD type; union { MOUSEINPUT...
by kyuuuri
21 Apr 2020, 20:24
Forum: AutoHotkey_H
Topic: How to use Gui, +Object for object inside object? Topic is solved
Replies: 1
Views: 1925

How to use Gui, +Object for object inside object? Topic is solved

Introduction Hello, I'm trying to use Gui, +Object to make each control go inside an object with properties Value and hwnd . My code Test := [] Test.Name := [] Gui, +ObjectTest.Name gui, add, edit, vValue hwndHwnd Gui, +ObjectTest.Surname gui, add, edit, vValue hwndHwnd gui, show return f1:: gui, s...
by kyuuuri
20 Apr 2020, 15:58
Forum: About This Community
Topic: [Poll] Official Discord server
Replies: 37
Views: 35902

Re: [Poll] Official Discord server

The problem with discord is that it's easier for users to complain and cry about people not helping them or people not posting the exact code they need. These kind of people are the ones that ask things like "Hello <paste 50 lines script here> doesn't work help me please". I don't mind helping peopl...
by kyuuuri
20 Apr 2020, 07:06
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

Probably mixture of 32 and 64-bit, the dll seems to be 64-bit but does not equal the current release size. The largest dll in release is x64w = 1216 KB. Hello, could you find anything about this? I double checked and it's x64 bit .dll, I compiled it myself and also tried the one from https://github...
by kyuuuri
14 Apr 2020, 03:19
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

Probably mixture of 32 and 64-bit, the dll seems to be 64-bit but does not equal the current release size. The largest dll in release is x64w = 1216 KB. If that's the case then there is something wrong with source compilación or on the pack script because I took that DLL from x64w folder and I comp...
by kyuuuri
13 Apr 2020, 22:46
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7749

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

MsgBox % DllCall("LoadLibrary","Str",dllpath) : 0 :arrow: Return value If the function succeeds, the return value is a handle to the module. If the function fails, the return value is NULL you sure you have the AutoHotkey.dll file in the right directory? Yes, 100% sure. I even asked the user to sen...

Go to advanced search