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++) {