Vinh 0 Posted May 5, 2011 Please help me, how to auto built au3 -> exe I want to create file locker ^^ Share this post Link to post Share on other sites
wakillon 403 Posted May 5, 2011 Something like this ? Func _Compile ( $_ScriptPath, $_IconPath ) If Not FileExists ( $_IconPath ) Then $_IconPath = @ProgramFilesDir & "\AutoIt3\Icons\filetype-blank.ico" RunWait ( @ProgramFilesDir & '\AutoIt3\Aut2Exe\Aut2exe.exe /in "' & $_ScriptPath & '" /icon "' & $_IconPath & '" /comp 4' ) EndFunc ;==> _Compile ( ) AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
Vinh 0 Posted May 5, 2011 Something like this ? Func _Compile ( $_ScriptPath, $_IconPath ) If Not FileExists ( $_IconPath ) Then $_IconPath = @ProgramFilesDir & "\AutoIt3\Icons\filetype-blank.ico" RunWait ( @ProgramFilesDir & '\AutoIt3\Aut2Exe\Aut2exe.exe /in "' & $_ScriptPath & '" /icon "' & $_IconPath & '" /comp 4' ) EndFunc ;==> _Compile ( ) Thanks, I'll try it Share this post Link to post Share on other sites