Guest Benny Posted March 31, 2004 Share Posted March 31, 2004 Can someone please help, I need to write a script for greek XP The main problem I am facing is the window names e.g. winwaitactive, "Ïäçãüò äçìéïõñãßáò óýíäåóçò" when this script is saved under ANSI it is changed to winwaitactive, "Iacauo acieiona?ao oyiaaoco" which does not work. IF I save the file as Unicode etc. I get errors from Autoit has anyone seen this before or is there a way around it. Rgds Benny Link to comment Share on other sites More sharing options...
Somerset Posted March 31, 2004 Share Posted March 31, 2004 use chr() and ascii table located in the help Link to comment Share on other sites More sharing options...
Developers Jos Posted March 31, 2004 Developers Share Posted March 31, 2004 Tried the below in Version 3 and this test works fine for me: Opt("WinTitleMatchMode", 2) $TITLE = 'Ïäçãüò äçìéïõñãßáò óýíäåóçò' Run("notepad.exe") HotKeySet("{END}","chgtitle") While 1 If WinActive('Ïäçãüò äçìéïõñãßáò óýíäåóçò') Then MsgBox(0,"active","active") Exit EndIf Wend Func ChgTitle() WinSetTitle("Notepad","",'Ïäçãüò äçìéïõñãßáò óýíäåóçò') EndFunc ;==>ChgTitle SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
scriptkitty Posted March 31, 2004 Share Posted March 31, 2004 I normally use UltraEdit, so I didn't notice anything, but when I went and used notpad, I saw that it saves some of those characters diferently.You might want to use a different editor, might I sugest:http://www.scintilla.org the SC1.exe is a plain all in one file version.The full version SciTE.exe has a complete lexel in the scripts and scraps forrum that does all sorts of nice highlighting and Intellisense.http://www.hiddensoft.com/forum/index.php?showtopic=1535Saving the file with these keeps all your characters intact, for me at least. AutoIt3, the MACGYVER Pocket Knife for computers. Link to comment Share on other sites More sharing options...
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