Mumms 0 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 :/ Share this post Link to post Share on other sites
Malkey 231 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. Share this post Link to post Share on other sites
MHz 80 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? Share this post Link to post Share on other sites
trancexx 1,013 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 Share this post Link to post Share on other sites