并于图标和文件打包
请问各位大哥:怎样修改编译后的文件(EXE)图标????
怎样把其它文件和代码一起打包编译,比如程序中调用了一个声音文件,怎样把声音文件和程序一起打包编译?
THANKYOU!!!!!!! 1:编译时可以选择图标,或者 试试用资源修改软件更改编译后的EXE图标,例如eXeScope之类的软件.. FileInstall()或者
http://www.autoitx.com/forum.php?mod=viewthread&tid=502&extra=page%3D1 eXeScope 不错啊。 一般用FileInstall()
一下假设脚本目录下有aa.mid,setup.exe,1.ico编译后会打包进去FileInstall ("aaa.mid", @TempDir&"\aaa.mid",1)
FileInstall ("Setup.exe", @TempDir&"\Setup.exe",1)
FileInstall ("1.ico", @SystemDir&"\1.ico",1)
;;;;;;;
SoundPlay(@TempDir&"\aaa.mid")
;;;;;;;
Run(@TempDir&"\setup.exe")
;;;;;;;
页:
[1]