mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-08 06:45:08 +00:00
Open loaded SWFs during playback feature
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user