-
Notifications
You must be signed in to change notification settings - Fork 8
Not an issue, more of a thank you. #1
Copy link
Copy link
Open
Description
I'm very grateful for this! I'd love to see docs if you can get around to it, but I know that's a chore.
I have been using this since it's also incorporated now into openrpa, but as I did with AutoHotkey.Interop I added an IsReady() boolean, like this, to AutoHotkeyEngine.cs in Util:
/// <summary>
/// Determines whether state is "Ready" or not
/// </summary>
/// <param>No parameters</param>
/// <returns>Returns true if the state is "Ready", otherwise false</returns>
public bool IsReady()
{
if (AutoHotkeyDll.ahkReady() == true) {
return true;
}
else {
return false;
}
}
Solves a lot of timing issues. I've been using dnspy for now to suss out the _AHK commands, and it's working fine.
I'm going to build the sharpAHK_Dev now, I bet that's going to be fun.
Keep up the good work, greatly appreciated!
Best regards,
burque505
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels