mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 00:24:39 +00:00
Open loaded SWFs during playback feature
This commit is contained in:
@@ -2,10 +2,11 @@
|
||||
|
||||
import flash.external.ExternalInterface;
|
||||
|
||||
public function debugConsole(msg):*{
|
||||
if(ExternalInterface.available)
|
||||
ExternalInterface.call("console.log",""+msg);
|
||||
return msg;
|
||||
public function debugConsole(...msg):*{
|
||||
for each(var n in msg){
|
||||
if(ExternalInterface.available)
|
||||
ExternalInterface.call("console.log",""+n);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user