Files
jpexs-decompiler/libsrc/debugswf/com/jpexs/decompiler/flash/debugger/debugAlert.as
2015-10-24 10:09:39 +02:00

13 lines
252 B
ActionScript

package com.jpexs.decompiler.flash.debugger {
import flash.external.ExternalInterface;
public function debugAlert(...msg):void{
for each(var n in msg){
if(ExternalInterface.available)
ExternalInterface.call("alert",""+n);
}
}
}