Jump to content

Search the Community

Showing results for tags 'AutoIt3Wrapper Unicode'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Recently I installed Autoit 3.3.8.1 and SciTE4AutoIt3 12/29/2011 with AutoIt3Wrapper 2.1.0.8. My scripts contained Unicode characters(Chinese).When I Compiled these scripts,I got these info: ! * Input file is UTF8 without BOM encoded, Obfuscator do not support UNICODE and will be skipped. * ! * The file SHOULD BE encoded as UTF8 with BOM to continue processing by AutoIT3Wrapper. Actually I have successfully obfuscated(stripped) many Unicode encoded scripts using #Obfuscator_Parameters=/striponly.So I just reverted AutoIT3Wrapper to 2.0.1.24 and tried to obfuscate/Check my script with Obfuscator/AU3Check,it worked without any problem. So I guess Obfuscator/AU3Check supports Unicode,Chinese at least.There should be an option for Unicode check in AutoIt3Wrapper. I compared source of AutoIT3Wrapper 2.0.1.24 with AutoIT3Wrapper 2.1.0.8,I find below: AutoIT3Wrapper 2.0.1.24: If Not $InputFileIsUTF16 And $Option = "Compile" And $INP_Run_Obfuscator ="y" Then Global $ObfuscatorpgmVer = "" Global $Obfuscatorpgm = $SciTE_Dir & "ObfuscatorObfuscator.exe" ... AutoIT3Wrapper 2.1.0.8: If $Option = "Compile" And $INP_Run_Obfuscator = "y" Then If $InputFileIsUTF8 Or $InputFileIsUTF16 Or $InputFileIsUTF32 Then ;~ ConsoleWrite("!*************************************************************************************" & @CRLF) ConsoleWrite("! Input file is UTF" & $UTFtype & " encoded.Obfuscator does not support this and will be skipped." & @CRLF) ;~ ConsoleWrite("!*************************************************************************************" & @CRLF) Else Global $ObfuscatorpgmVer = "" Global $Obfuscatorpgm = $SciTE_Dir & "ObfuscatorObfuscator.exe" ...
×
×
  • Create New...