AS3: "All" option in ABC list to merge scripts into 1 tree

AS3: Better decompiling namespaces
This commit is contained in:
Jindra Pet��k
2012-12-30 12:57:09 +01:00
parent 7b32f27c54
commit 32debac3a7
38 changed files with 370 additions and 217 deletions
+7 -2
View File
@@ -297,13 +297,18 @@ public class SWF {
}
}
};
List<DoABCTag> abcTags=new ArrayList<DoABCTag>();
for (Tag t : tags) {
if (t instanceof DoABCTag) {
((DoABCTag) t).abc.addEventListener(evl);
((DoABCTag) t).abc.export(outdir, isPcode);
abcTags.add((DoABCTag)t);
asV3Found = true;
}
}
for(DoABCTag t:abcTags){
t.abc.addEventListener(evl);
t.abc.export(outdir, isPcode,abcTags);
}
if (!asV3Found) {
List<Object> list2 = new ArrayList<Object>();
list2.addAll(tags);