If I switch to LUA for macros and re-record the macro it works ok
Code: Select all
import zeus
def key_macro():
zeus.screen_update_disable()
zeus.write("Ú") # ASCII(0218)
zeus.screen_update_enable()
zeus.screen_update()
key_macro() # run the macro
"""
Python selected as scripting language
ERRORS GIVEN WHEN SCRIPT IS RUN:
Scripting Error :> File "c:\apt\zeus\zScript\Macro2.py", line 5
Scripting Error :> SyntaxError: Non-ASCII character '\xda' in file c:\apt\zeus\zScript\Macro2.py on line 5, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
Macro script generated '8' Debug, Error and/or Warning message(s).
"""
This occurs in the beta posted in the previous thread (which fixed the problem I was having with high ascii codes in my code).
Thanks in advance,
Grant Smith