Files
jpexs-decompiler/libsrc/debugswf/com/jpexs/decompiler/flash/debugger/debugSocket.as
2015-10-24 10:09:39 +02:00

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