AutoHotkey-JSON
AutoHotkey-JSON copied to clipboard
val true/false conversion
Jxon_Load:
; in v1.1, true,false,A_PtrSize,A_IsUnicode,A_Index,A_EventInfo, ; SOMETIMES return strings due to certain optimizations. Since it ; is just 'SOMETIMES', numerify to be consistent w/ v2.0-a else if (val == "true" || val == "false") val := %value% + 0
Shouldn't %value% be %val%? This line caused an execution error for me in AHKv2