Help AHK Problem

Crayder

Active member
Joined
Mar 6, 2014
Messages
148
Reaction score
0
Apparently the function doesn't exist... Search your script for "StrGet," if the script has that function then it's actually something else twisting the script up... If it doesn't have that function defined, then you'll have to add it yourself...
 

bongsa

New member
Joined
Mar 6, 2014
Messages
3
Reaction score
0
The problem is the API Include not the script itself
Here a snipped from that:
Code:
GetCallbackChatlogParams(ptr_ChatlogStruct, ByRef string)
{
		VarSetCapacity(string, 256, 0)
		string := StrGet(ptr_ChatlogStruct)
}
 

Crayder

Active member
Joined
Mar 6, 2014
Messages
148
Reaction score
0
Exactly, and apparently the include didn't come with the StrGet function, like I said above...  :face_palm: :angry:
 
Top