allow to export only as2 or as3 from command line

This commit is contained in:
honfika@gmail.com
2015-07-17 09:35:03 +02:00
parent b1a84a3940
commit 0b69a9e75c
2 changed files with 11 additions and 2 deletions

View File

@@ -1348,6 +1348,10 @@ public final class SWF implements SWFContainerItem, Timelined {
}
public List<File> exportActionScript(AbortRetryIgnoreHandler handler, String outdir, ScriptExportSettings exportSettings, boolean parallel, EventListener evl) throws IOException {
return exportActionScript(handler, outdir, exportSettings, parallel, evl, true, true);
}
public List<File> exportActionScript(AbortRetryIgnoreHandler handler, String outdir, ScriptExportSettings exportSettings, boolean parallel, EventListener evl, boolean as2, boolean as3) throws IOException {
List<File> ret = new ArrayList<>();
if (isAS3()) {