I have been unable to track down the RemoteAHK - Server and RemoteAHK - client scripts by TheGood, these having been temporarily salvaged previously from AHK.Net.
Could anyone possessing these two scripts please post a link to the files or the contents of the code in this thread.
Thanks.
Search found 11 matches
- 27 Feb 2017, 20:58
- Forum: Ask For Help
- Topic: Trying to locate RemoteAHK by TheGood
- Replies: 2
- Views: 639
- 24 Feb 2017, 17:19
- Forum: Ask For Help
- Topic: ActiveScript.ahk: Missing WScript object
- Replies: 1
- Views: 526
ActiveScript.ahk: Missing WScript object
I have a VBScript which runs perfectly when run from a batch file in the form: @CScript MyScript.vbs I want to execute the code in that script using the ActiveScript.ahk host. I have successfully executed some other VBS scripts using calls to ActiveScript but I can't seem to resolve a problem I have...
- 03 Feb 2017, 06:01
- Forum: Ask For Help
- Topic: ComObjCreate not working with ImageMagickObject
- Replies: 1
- Views: 404
ComObjCreate not working with ImageMagickObject
I am falling at the first hurdle in trying to use the ImageMagickObject, getting the error "0x80040154 - Class not registered" when attempting to create the COM object. As shown in the COM Object Reference at https://autohotkey.com/board/topic/56987-com-object-reference-autohotkey-v11/page-3, my cod...
- 28 Nov 2016, 13:03
- Forum: Ask For Help
- Topic: Using HttpRequest.ahk with an online OCR API
- Replies: 8
- Views: 2384
Re: Using HttpRequest.ahk with an online OCR API
Many thanks for the helpful responses.
- 23 Nov 2016, 13:57
- Forum: Ask For Help
- Topic: Using HttpRequest.ahk with an online OCR API
- Replies: 8
- Views: 2384
Using HttpRequest.ahk with an online OCR API
Can anyone help in configuring HttpRequest to work with a great online OCR service? I am using version 2.49 of HttpRequest (available from https://dl.dropboxus...httpRequest.ahk) and have failed so far to configure it to work with the free online OCR service at https://ocr.space/OCRAPI. The particul...
- 31 Aug 2016, 06:36
- Forum: AutoHotkey v2 Development
- Topic: Replacements for IfExist/IfNotExist
- Replies: 2
- Views: 968
Replacements for IfExist/IfNotExist
The IfExist/IfNotExist commands have been removed in v2 but there is no mention of this in the v2 changes doc. Is there a quick replacement command/function for these?
- 31 Aug 2016, 04:30
- Forum: AutoHotkey v2 Development
- Topic: Replacement for Process Exist command
- Replies: 2
- Views: 989
Replacement for Process Exist command
In v1.1, you could quickly test to see if a process was running using Process, Exist, eg. Process, Exist, Autohotkey.exe. The Process command and its subcommands have been removed in v2, ostensibly to be replaced by individual commands. There appears to be no direct individual replacement for Proces...
- 30 Aug 2016, 10:38
- Forum: AutoHotkey v2 Development
- Topic: Continuation sections not working with variable assignments
- Replies: 2
- Views: 882
Continuation sections not working with variable assignments
The example of using parentheses to mark a continuation section in the V2 CHM file is along the lines of: var = ( First line of text Second line of text ) Probably due to the removal of simple "=" as an assignment operator, the above example now returns the error that this is a call to a non-existen...
- 17 Apr 2016, 06:50
- Forum: Ask For Help
- Topic: Passing a pointer to an array of structures in a DLL call
- Replies: 5
- Views: 586
Re: Passing a pointer to an array of structures in a DLL call
Many thanks for all of the helpful suggestions. I did achieve success at one point but the annoying thing is that this was due to a different hdc being supplied. The hdc in my code is output via a hook to the DrawText function so that the hdc variable is a handle to the device context on which the t...
- 16 Apr 2016, 18:23
- Forum: Ask For Help
- Topic: Passing a pointer to an array of structures in a DLL call
- Replies: 5
- Views: 586
Re: Passing a pointer to an array of structures in a DLL call
Thanks for your swift response. Unfortunately, neither technique worked. I am not familiar with the nested NumPut syntax in your second method and split this so as to make it clear that at least one of the NumPuts would have an offset of 0. NumPut(0, &pt1, 0) NumPut(0, &pt1, "Uint") This didn't work...
- 16 Apr 2016, 12:56
- Forum: Ask For Help
- Topic: Passing a pointer to an array of structures in a DLL call
- Replies: 5
- Views: 586
Passing a pointer to an array of structures in a DLL call
I am trying to call the Windows API function LPtoDP which converts logical coordinates to device coordinates. I always get a failure return value and I am sure it is to do with the second param required by that function. The function definition at https://msdn.microsoft.com/en-us/library/windows/des...