Files
jpexs-decompiler/libsrc/debugswf/com/jpexs/decompiler/flash/debugger/debugSocket.as
T

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;
}
}