Vinh Posted May 5, 2011 Posted May 5, 2011 Please help me, how to auto built au3 -> exe I want to create file locker ^^
wakillon Posted May 5, 2011 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
Vinh Posted May 5, 2011 Author 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
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