| View previous topic :: View next topic |
| Author |
Message |
JiH Guest
|
Posted: Tue Feb 02, 2010 1:15 pm Post subject: Czech capital accented characters are Sends as lower |
|
|
Hello,
i have big problem. All capital accented czech characters are sends as lower. ie. output for "temp := "ĚŠČŘŽÝÁÍÉ" is "ěščřžýáíé". I have big problem with fill of clients form, where are capital characters as first character - ie. "Šárka Červená" is send as "šárka červená", "ČERNÝ ÚHOŘ COMPANY" is send as "čERNý úHOř COMPANY".
Thanks for any solving idea
J.
Example:
 |
|
| Back to top |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
Posted: Tue Feb 02, 2010 1:18 pm Post subject: |
|
|
1) Try the various send methods to see if that helps (play, input, raw etc)
2) simply paste the text rather then send the string char by char | Code: |
clipboard=Šárka Červená
send ^v ; paste | look at clipboard doc page to retain current clipboard content and also look into clipwait _________________ AHK Wiki FAQ
TF : Text files & strings lib, TF Forum |
|
| Back to top |
|
 |
JiH Guest
|
Posted: Tue Feb 02, 2010 1:44 pm Post subject: |
|
|
1) - i try all methods of send .. it is not working
2) send using clipboard is working
I have now
InputBox, Name, Name, Name Surname Title
...
clipboard = %Name%
Send ^v
instead of simple Send.
Thanks for tip
J. |
|
| Back to top |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
Posted: Tue Feb 02, 2010 1:46 pm Post subject: |
|
|
If you want to experiment further with send, sometimes trying a few different times for setkeydelay might help as well. But good to hear the paste options works for you. _________________ AHK Wiki FAQ
TF : Text files & strings lib, TF Forum |
|
| Back to top |
|
 |
ScottMattes
Joined: 21 May 2007 Posts: 173 Location: USA
|
Posted: Tue Feb 02, 2010 3:58 pm Post subject: |
|
|
I am having the same problem with German Umlauts, but I can't use the clipboard because it seems that Word 2007 get in the way with its clipboard monitoring.
| hugov wrote: | | If you want to experiment further with send, sometimes trying a few different times for setkeydelay might help as well. But good to hear the paste options works for you. |
Is there any explanation of why setkeydelay would change this upper to lower behaviour? _________________ -------------
Scott Mattes
My small, and slowly growing, collection of scripts. |
|
| Back to top |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
|
| Back to top |
|
 |
ScottMattes
Joined: 21 May 2007 Posts: 173 Location: USA
|
Posted: Tue Feb 02, 2010 4:41 pm Post subject: |
|
|
I have tried various clipwait times with no success.
I haven't tried blind, but after reading it I am uncertain that it would help (so, I should at least try it). _________________ -------------
Scott Mattes
My small, and slowly growing, collection of scripts. |
|
| Back to top |
|
 |
|