mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 17:45:28 +00:00
13 lines
252 B
ActionScript
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);
|
|
}
|
|
}
|
|
|
|
}
|