Open loaded SWFs during playback feature

This commit is contained in:
Jindra Petřík
2015-10-24 10:09:39 +02:00
parent f977c1c381
commit 8c8be0737f
20 changed files with 344 additions and 31 deletions

View File

@@ -1,13 +1,14 @@
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);
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);
}
}
return msg;
}
}