From 904b0965a25c50e96f86b49682939cf69ea08fbc Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Thu, 10 Mar 2016 21:27:50 +0100 Subject: [PATCH] fix --- .../src/com/jpexs/decompiler/flash/xfl/XFLConverter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java index dcd745edc..8e2b4e508 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java @@ -1252,7 +1252,7 @@ public class XFLConverter { if (symbol instanceof ButtonTag) { itemIcon = "0"; symbolStr.writeStartElement("DOMTimeline", new String[]{"name", "Symbol " + symbol.getCharacterId(), "currentFrame", "0"}); - symbolStr.writeStartElement(""); + symbolStr.writeStartElement("layers"); ButtonTag button = (ButtonTag) symbol; List records = button.getRecords(); @@ -1270,7 +1270,7 @@ public class XFLConverter { symbolStr.writeStartElement("isSelected", "true"); } symbolStr.writeStartElement("color", randomOutlineColor()); - symbolStr.writeStartElement(""); + symbolStr.writeStartElement("frames"); int lastFrame = 0; loopframes: for (int frame = 1; frame <= 4; frame++) {