Page 1 of 1

SciTE4AutoHotkey script language

Posted: 09 May 2023, 01:49
by entropy
Hello,

I need to write a script in SciTE4AutoHotkey that will work under a WinActive command, however, the title of the window is in Greek and Greek characters are not being accepted in the editor of SciTE4AutoHotkey.

Is there a way to solve this?

Thank you!

Re: SciTE4AutoHotkey script language  Topic is solved

Posted: 09 May 2023, 04:54
by gregster
entropy wrote:
09 May 2023, 01:49
Greek characters are not being accepted in the editor of SciTE4AutoHotkey.
Just - like always in AHK - use UTF-8 with BOM (in v1 or v2) or UTF-8 (only v2) encoding to work with Unicode characters.
File menu > Encoding > ...

Re: SciTE4AutoHotkey script language

Posted: 09 May 2023, 05:40
by entropy
Thank you! I should have been able to spot this option myself. Sorry!