AS3: counting tags during export

This commit is contained in:
Jindra Pet��k
2012-12-30 20:48:45 +01:00
parent 30337c38c8
commit 3eb247bbc8
2 changed files with 15 additions and 3 deletions
+6 -2
View File
@@ -304,9 +304,13 @@ public class SWF {
asV3Found = true;
}
}
for (DoABCTag t : abcTags) {
for (int i = 0; i < abcTags.size(); i++) {
DoABCTag t=abcTags.get(i);
t.abc.addEventListener(evl);
t.abc.export(outdir, isPcode, abcTags);
t.abc.export(outdir, isPcode, abcTags,"tag "+(i+1)+"/"+abcTags.size()+" ");
}
for (DoABCTag t : abcTags) {
}
if (!asV3Found) {