I made a small registry modification for .acs-files which makes one able to quickly compile them by just right-clicking them and pressing "Compile ACS".
How to use:
- First place a copy of the ACC compiler and it's files in: C:\Program Files\ACC\.
- Then copy the below code into Notepad.
- Save it as whatever.reg. - It's important that the file extension is .reg!
- Run it...
...and voilà!

(Icon not included)
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.acs]
[HKEY_CLASSES_ROOT\.acs\shell]
[HKEY_CLASSES_ROOT\.acs\shell\compileacs]
@="Compile ACS"
"MUIVerb"="Compile ACS"
[HKEY_CLASSES_ROOT\.acs\shell\compileacs\command]
@="C:\\Program Files\\ACC\\acc.exe %1 %*"
The '%1' and '%*' symbols are the parameters sent to the application. '%1' is the selected file.