One my script compiles another one...
run, Ahk2Exe.exe /in "C:\AHK\scriptName.ahk" /out "Z:\Script.exe" /icon "C:\AHK\Icons\ScriptMain.ico"
I would like to also compile suspend and pause icon in the same way. Is it possible?
Cheers
Posted 31 May 2012 - 09:23 PM
run, Ahk2Exe.exe /in "C:\AHK\scriptName.ahk" /out "Z:\Script.exe" /icon "C:\AHK\Icons\ScriptMain.ico"
Posted 31 May 2012 - 09:28 PM
Posted 31 May 2012 - 09:57 PM
Posted 31 May 2012 - 10:15 PM
Posted 31 May 2012 - 10:24 PM
Posted 31 May 2012 - 10:31 PM
Posted 31 May 2012 - 10:36 PM
Posted 31 May 2012 - 10:58 PM
Posted 01 June 2012 - 07:12 AM
Posted 01 June 2012 - 09:00 AM
Posted 01 June 2012 - 09:54 AM
gui, add, button, gCompile, compile gui, show return Compile: run, compileScript.ahk return
run, C:\Program Files\AutoHotkey\Compiler\Ahk2ExeH.exe /in "C:\AHK\scriptName.ahk" /out "Z:\Script.exe" /icon "C:\AHK\Icons\ScriptMain.ico"
Posted 01 June 2012 - 12:36 PM
Posted 01 June 2012 - 12:40 PM
That sounds very inefficient why not store that data in an INI or XML file and read that, saves you the trouble of compiling every time and you still only have to copy one file if you need it elsewhere (the data file instead of the exe)My other script waits for a new data. In case of any changes it updates thr data and compiles new script. The data changes quite often.
Posted 01 June 2012 - 12:52 PM