我创建了一个AutoHotKey可执行文件来打开启用了宏的Excel。我只想与同龄人共享exe文件(而不是excel文件)。有可能吗?
答案 0 :(得分:3)
当然。这很容易。请参考:
FileInstall : 将指定的文件包含在脚本的编译版本中,并将其写入Dest。
FileInstall, Source, Dest [, Overwrite]
在https://www.autohotkey.com/docs/commands/FileInstall.htm
并查看示例:
FileInstall, C:\My Documents\My File.txt, %A_ProgramFiles%\My Application\Readme.txt, 1
或
FileInstall, Make Dragon Commands - Copy.png, %Me%.png, 0
Gui, Add, Picture, , %Me%.png ; add a graphic
FileDelete, %Me%.png
将图形添加到gui。