Open anonymousperson1209 opened 3 years ago
Unicode characters that are 5 digits (e.g. U+1D44E π) don't work.
robot.typeString('ΓΓ§ΔéñtΓ©d'); robot.typeString('δ½ ε₯½εοΌ'); robot.typeString('ππ©πΊπππ π ππ’π€£π’π¦π');
should result in
ΓΓ§ΔéñtΓ©dδ½ ε₯½εοΌππ©πΊπππ π ππ’π€£π’π¦π
ΓΓ§ΔéñtΓ©dδ½ ε₯½εοΌοο©οΊοοο ο οο’ο€£ο’ο¦ν
The issue appears to be that only the last four characters are kept (e.g. U+1D44E π β U+D44E ν).
I think @zz85 fixed the issue, but it must have been undone at some point because his file does not match the live codebase's version of the file anymore.
npm i git+https://github.com/octalmage/robotjs
main.js
var robot = require('robotjs'); robot.typeString('ΓΓ§ΔéñtΓ©d'); robot.typeString('δ½ ε₯½εοΌ'); robot.typeString('ππ©πΊπππ π ππ’π€£π’π¦π');
node main.js
I need to type math characters (e.g. U+1D44E π).
Unicode characters that are 5 digits (e.g. U+1D44E π) don't work.
Expected Behavior
should result in
Current Behavior
ΓΓ§ΔéñtΓ©dδ½ ε₯½εοΌοο©οΊοοο ο οο’ο€£ο’ο¦ν
Possible Solution
The issue appears to be that only the last four characters are kept (e.g. U+1D44E π β U+D44E ν).
I think @zz85 fixed the issue, but it must have been undone at some point because his file does not match the live codebase's version of the file anymore.
Steps to Reproduce (for bugs)
npm i git+https://github.com/octalmage/robotjs
main.js
withnode main.js
Context
I need to type math characters (e.g. U+1D44E π).
Your Environment