Files
jpexs-decompiler/libsrc/debugswf/com/jpexs/decompiler/flash/debugger/debugAlert.as
2014-10-28 15:57:31 +01:00

12 lines
232 B
ActionScript

package com.jpexs.decompiler.flash.debugger {
import flash.external.ExternalInterface;
public function debugAlert(msg):*{
if(ExternalInterface.available)
ExternalInterface.call("alert",""+msg);
return msg;
}
}