mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 11:36:09 +00:00
PreviewExporter - always AS1
This commit is contained in:
@@ -342,7 +342,15 @@ public class PreviewExporter {
|
||||
|
||||
FileAttributesTag fa = swf.getFileAttributes();
|
||||
if (fa != null) {
|
||||
fa.writeTag(sos2);
|
||||
FileAttributesTag fa2;
|
||||
try {
|
||||
fa2 = (FileAttributesTag) fa.cloneTag();
|
||||
fa2.actionScript3 = false;
|
||||
fa2.setModified(true);
|
||||
fa2.writeTag(sos2);
|
||||
} catch (InterruptedException ex) {
|
||||
//ignored
|
||||
}
|
||||
}
|
||||
|
||||
SetBackgroundColorTag setBgColorTag = swf.getBackgroundColor();
|
||||
|
||||
Reference in New Issue
Block a user