mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 03:20:45 +00:00
AS3: XML fix, with statement problem
Loading dialog with loading phases
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user