Yogi Yang Posted June 26, 2004 Posted June 26, 2004 Has any one tried sending UNICODE characters to a unicode enabled target applications like MS Word 2000. Thanks Yogi Yang
konan Posted June 26, 2004 Posted June 26, 2004 I had tried this problem . It can't send Chinese characters. how can i send UNICODE characters ?
Yogi Yang Posted July 3, 2004 Author Posted July 3, 2004 I am also facing the same problem. I want to send Indic Characters to target app which is an Softwre written in VB and uses FM20.dll controls. If anyone has got any ideas plz. help me.
Yogi Yang Posted July 8, 2004 Author Posted July 8, 2004 Sending characters through Clipboard is not a professional way. I was searching for a more efficient way for sending UNICODE characters to target UNICODE enabled application. I am seening that no one is really answering this question This means that AutoIt does not support UNICODE characters or this topic is very complicated and nobody wants to touch it or discuss it.
pekster Posted July 8, 2004 Posted July 8, 2004 How about using the Asc() function to create your strings of unicode characters, and then combine them in your script to get the words that you want. I've used a similar method to get a unicode CR + LF combination by doing this: $unicode_CRLF = Asc(00) & Asc(13) & Asc(00) & Asc(10) [font="Optima"]"Standing in the rain, twisted and insane, we are holding onto nothing.Feeling every breath, holding no regrets, we're still looking out for something."[/font]Note: my projects are off-line until I can spend more time to make them compatable with syntax changes.
Yogi Yang Posted January 18, 2005 Author Posted January 18, 2005 I feel we cannot use AutoIT for sending Unicode text so we should use KbdEvents API for sending text to a target application.... These are my views...... If any one has got any other viewes or ideas then plz. share it with us.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now