use red color when bitmap is not available for bitmapfill (probably some fallback in flash player for erroneous bitmap fills)

This commit is contained in:
2016-12-14 19:43:06 +01:00
parent a44221b363
commit b8f88aea79
5 changed files with 22 additions and 1 deletions
@@ -1135,7 +1135,7 @@ public class PreviewPanel extends JPersistentSplitPane implements TagEditorPanel
try {
tempFile = File.createTempFile("ffdec_view_", ".swf");
try (OutputStream fos = new BufferedOutputStream(new FileOutputStream(tempFile))) {
swf.saveTo(fos);
swf.saveTo(fos, false);
}
//Inject Loader
if (swf.isAS3() && Configuration.autoOpenLoadedSWFs.get() && !Configuration.internalFlashViewer.get() && !DebuggerTools.hasDebugger(swf)) {