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

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