You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[email protected] (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.
Operating System: Windows 11 Home Edition (23H2 v22631.3880)
The text was updated successfully, but these errors were encountered:
dongivan
changed the title
When using typeString() to output consecutive identical unicode CJK characters, only the first character will be output
When using typeString() to output consecutive identical unicode characters, only the first character will be output
Aug 4, 2024
[email protected] (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 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.The text was updated successfully, but these errors were encountered: