allow to create swf from code only / export SWF to "Java code", which generates the SWF

This commit is contained in:
2015-01-17 12:17:03 +01:00
parent 30a3bc1e3e
commit 07eaafdc55
64 changed files with 841 additions and 259 deletions
@@ -85,8 +85,8 @@ public class DecompiledEditorPane extends LineMarkedEditorPane implements CaretL
}
public void fireScript() {
for (int i = 0; i < scriptListeners.size(); i++) {
scriptListeners.get(i).run();
for (Runnable scriptListener : scriptListeners) {
scriptListener.run();
}
}