Mumms Posted April 18, 2010 Posted April 18, 2010 C:\Program Files\AutoIt3\Include\AES.Au ~~~~~~~~~~~~~~~~~3(255,20) : ERROR: undefined macro. If @AutoItUnicode Then~^ This is the error I get. What can I do to fix it :/
Malkey Posted April 18, 2010 Posted April 18, 2010 From here.3.2.13.1 (10th June, 2008) (Beta)Some more big speed improvements, especially with strings, and:AutoIt:- Added: New flag for StringSplit() to not return the count in element 0.- Fixed #358: Install dir documentation cleaned up (thanks Zedna).- Fixed #355: Child not visible beta regression. (Thanks Ultima)- Fixed #366: AutoIt crash on bad syntax.- Fixed #360: RunAs() under Windows 2000.- Fixed #367: STDIO functions in compiled scripts work again.- Removed #357: @AutoItUnicode macro.@AutoItUnicode is no longer a macro in AutoIt.You need to delete this ex-macro from your script.
MHz Posted April 18, 2010 Posted April 18, 2010 The script needs correction without using @AutoItUnicode. Just removing it may leave an out dated unworkable script. I assume it is not yours? So is this an include someone created which they can fix? or something that we can help with?
trancexx Posted April 18, 2010 Posted April 18, 2010 Add Global Const $AutoItUnicode = 1 at top of your script and replace all instances of @AutoItUnicode with $AutoItUnicode. Don't use scripts with that or similar stuff. That's from some "old" times. It's left behind, you do the same. ♡♡♡ . eMyvnE
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