AS3: XML fix, with statement problem

Loading dialog with loading phases
This commit is contained in:
Jindra Pet��k
2012-12-31 15:59:28 +01:00
parent 197c633709
commit d724241091
7 changed files with 39 additions and 14 deletions
+7
View File
@@ -149,6 +149,9 @@ public class Main {
if (actionMainFrame != null) {
actionMainFrame.setStatus(name);
}
if(loadingDialog!=null){
loadingDialog.setDetail(name);
}
if (Main.isCommandLineMode()) {
System.out.println(name);
}
@@ -162,6 +165,9 @@ public class Main {
if (actionMainFrame != null) {
actionMainFrame.setStatus("");
}
if(loadingDialog!=null){
loadingDialog.setDetail("");
}
}
public static SWF parseSWF(String file) throws Exception {
@@ -188,6 +194,7 @@ public class Main {
@Override
protected Object doInBackground() throws Exception {
try {
Main.startWork("Reading SWF...");
swf = parseSWF(Main.file);
FileInputStream fis = new FileInputStream(file);
DEBUG_COPY = true;