Question

I'm using a jsfl script to run export to swf on about 200 fla files, this opens the fla file runs the commands from the jsfl then exports to SWF, however this modifies the FLA file and when it want to close the file from flash it asks me if I want to save the changes.

This is getting rather annoying since I'm hoping to make this automated.

Is there any way to turn of this feature in Flash CS5.5 premium.

perhaps a change in the JSFL file or a command line when starting the flash

Right now I'm doing

%Path_TO_FLASH%\Flash.exe myscript.jsfl

Was it helpful?

Solution

Error has been resolved. See below.

Problem resided in the jsfl file

var doc = fl.openDocument(Filepath):
%Various commands%
doc.close(false); //this is a bool value for PromtSaveDialog default is "true"

I hope others who experiance the same issue will have some help from this

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top