robotjs@0.6.0 (use npm install robotjs) doesn't support typeString() with unicode in windows, so I cloned the project and build it locally.
Everything goes fine except code like robotjs.typeString("ㄱㄱㄱ"). It should output three ㄱ but only one actually outputted,
and robotjs.typeString("1ㄱ2ㄱㄱ3ㄱㄱㄱ4444ㄱ55555ㄱ66666ㄱ") will output 1ㄱ2ㄱ3ㄱ4ㄱ5ㄱ6ㄱ.
I dont understand C/C++ so I cannot fix it by myself. Please help me.
robotjs@0.6.0 (use
npm install robotjs
) doesn't support typeString() with unicode in windows, so I cloned the project and build it locally. Everything goes fine except code likerobotjs.typeString("ㄱㄱㄱ")
. It should output threeㄱ
but only one actually outputted, androbotjs.typeString("1ㄱ2ㄱㄱ3ㄱㄱㄱ4444ㄱ55555ㄱ66666ㄱ")
will output1ㄱ2ㄱ3ㄱ4ㄱ5ㄱ6ㄱ
. I dont understand C/C++ so I cannot fix it by myself. Please help me.contents.split("").forEach((s) => robotjs.typeString(s))
cannot output correctly neither.