mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 11:04:52 +00:00
15 lines
328 B
ActionScript
15 lines
328 B
ActionScript
package com.jpexs.decompiler.flash.debugger {
|
|
import flash.system.Capabilities;
|
|
|
|
public function debugSocket(...msg):*{
|
|
for each(var n in msg){
|
|
//only on webpages or activex
|
|
if(Capabilities.playerType == 'PlugIn'
|
|
|| Capabilities.playerType == 'ActiveX'){
|
|
DebugConnection.writeMsg(n);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|