Open loaded SWFs during playback feature

This commit is contained in:
Jindra Petřík
2015-10-24 10:09:39 +02:00
parent f977c1c381
commit 8c8be0737f
20 changed files with 344 additions and 31 deletions

View File

@@ -2,10 +2,11 @@
import flash.external.ExternalInterface;
public function debugAlert(msg):*{
if(ExternalInterface.available)
ExternalInterface.call("alert",""+msg);
return msg;
public function debugAlert(...msg):void{
for each(var n in msg){
if(ExternalInterface.available)
ExternalInterface.call("alert",""+n);
}
}
}