mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:45:49 +00:00
14 lines
304 B
ActionScript
14 lines
304 B
ActionScript
package com.jpexs.decompiler.flash.debugger {
|
|
import flash.system.Capabilities;
|
|
|
|
public function debugSocket(msg):*{
|
|
//only on webpages or activex
|
|
if(Capabilities.playerType == 'PlugIn'
|
|
|| Capabilities.playerType == 'ActiveX'){
|
|
DebugConnection.writeMsg(msg);
|
|
}
|
|
return msg;
|
|
}
|
|
|
|
}
|