Search found 2 matches
- 15 Nov 2018 14:18
- Forum: DOS Batch Forum
- Topic: This works in Command prompt but not for a batch file?
- Replies: 3
- Views: 2991
Re: This works in Command prompt but not for a batch file?
Thank you Squashman. Your solution works great. I was a different pc before so I made some changes to the original. The new one looks like this: @ECHO OFF ECHO. START "" "C:\ase\aseprite.exe" -b walk.aseprite --save-as output.png ECHO. PAUSE CLS EXIT The above batch file will correctly create the .p...
- 15 Nov 2018 08:20
- Forum: DOS Batch Forum
- Topic: This works in Command prompt but not for a batch file?
- Replies: 3
- Views: 2991
This works in Command prompt but not for a batch file?
Hello to all, I'm trying to create a batch file to run an automated process to export files as .pngs for the sprite editing tool Asesprite, but running into problems. I have the following command in CP: G:\Desktop\Char_A>"G:\Desktop\Ase\Aseprite.exe" -b sp.aseprite --save-as output.png This allows m...