Thank you for pointing that out.
Create function "hk_MakeHr"
And put the below code in it
Function hk_MakeHr
Create function "hk_MakeHr"
And put the below code in it
Function hk_MakeHr
function int'hk str&hr
;Retrieves the human-readable format of an virtual keycode which is in integer format
;hk - hotkey in string format, example: "577"
;hr - the human readable format will be put in this variable
int k_vk
int k_mod
str human_readable
k_vk=hk&255
k_mod=hk>>8
FormatKeyString k_vk k_mod &human_readable
hr=human_readable
human_readable=""
ret 1