On Sat, 2008-06-07 at 10:19 +0300, Juho Viitasalo wrote:
Inkscape converts swf files in temp directory. For example: E:\Documents and Settings\Juho\Local Settings\Temp\ink_ext_XXXXXXKR52BU.swf
But it won't save this file to desktop with the name I give it in saving dialog. Inkscape creates new empty file with that name and puts it to desktop.
The way that this is supposed to work is that the utility should output the final file to STDOUT and then Inkscape will put it in a file. This is done so that Inkscape can handle more file destinations than the local filesystem.
I don't know DOS, but the script should look roughly like this:
$ docommand <file passed in> localtemp $ cat localtemp $ rm localtemp
There is probably a problem in the .cmd file you have in that it doesn't do those last two steps.
--Ted