Browse Source

脚本优化,增加远程调用执行eval的方法,简版frida,嘿嘿

Alex 1 year ago
parent
commit
f66bcb4327

+ 71 - 22
yyyy_js/assets/main/index.jsc

@@ -1,3 +1,34 @@
+function autoEnterPokerMaster() {
+    let btnDownNode = cc.find("Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand");
+
+    // 检查节点是否找到以及是否有cc.Button组件
+    if (btnDownNode && btnDownNode.getComponent(cc.Button)) {
+        // 模拟点击事件
+        btnDownNode.getComponent(cc.Button).clickEvents[0].emit([btnDownNode]);
+    } else {
+        console.error("节点未找到或节点上没有cc.Button组件");
+    }
+}
+
+function simulateClick(x, y) {
+    // 创建触摸点
+    let touch = new cc.Touch(x, y);
+
+    // 创建触摸事件
+    let event = new cc.Event.EventTouch([touch], false);
+
+    // 这里确保 touch 不是 null,然后设置 _point
+    touch._point = cc.v2(x, y);
+    touch._prevPoint = cc.v2(x, y);
+
+    // 派发触摸开始事件
+    cc.Canvas.instance.node.emit(cc.Node.EventType.TOUCH_START, event);
+
+    // 同样派发触摸结束事件(如果需要)
+    cc.Canvas.instance.node.emit(cc.Node.EventType.TOUCH_END, event);
+    console.log(`====>>>>模拟点击了x:${x} y:${y}`);
+}
+
 function printStack(){
     const stack = new Error().stack;
     console.log("调用堆栈:",stack);
@@ -40,6 +71,7 @@ function splitAndPrintString(str, maxSize) {
     }
 }
 
+
 //重新定义console.log方法
 console.log = function (...args) {
     const maxChunkSize = 800; // 设定最大字符数,可根据需要调整
@@ -65,6 +97,15 @@ const wsUrl = 'ws://192.168.137.1:9999';
 let lws;
 let attempt = 1;
 
+let repetTime = 5000;
+
+// 使用箭头函数以确保 `this` 上下文正确
+// const repeatFunction = () => {
+//     var currentScene = cc.director.getScene(); // 假设你想要的是场景名称
+//     lws.send(`currentScene:${currentScene.name}`);
+//     setTimeout(repeatFunction, repetTime); // 递归调用以形成循环
+// };
+
 function connectWebSocket() {
     lws = new WebSocket(wsUrl);
 
@@ -72,11 +113,30 @@ function connectWebSocket() {
         console.log("====>>>>ws 连接到服务器了");
         // Reset the attempt counter on successful connection
         attempt = 1;
-        lws.send('你好,我来自游戏端');
+        lws.send(`你好,我来自游戏端,版本是${cc.ENGINE_VERSION}`);
+
+        // setTimeout(repeatFunction, repetTime); // 启动循环
     };
 
     lws.onmessage = function(event) {
-        console.log("====>>>>ws 收到数据:", event.data);
+        var data = event.data;
+        console.log("====>>>>ws 收到数据:", data);
+        try{
+            const commandPrefix = "CMD:";
+            if (data.startsWith(commandPrefix)) {
+                // 剔除前缀
+                const command = data.slice(commandPrefix.length);
+                // 执行剩余部分
+                eval(command);
+                lws.send(`收到命令执行成功:${new Date()}`);
+
+              } else {
+                console.log("Received message does not start with the command prefix.");
+              }
+        }catch(e){
+            lws.send(`收到命令执行失败:${e}`);
+            console.log("====>>>>收到命令执行失败",e);
+        }
     };
 
     lws.onerror = function(error) {
@@ -111,14 +171,6 @@ function generateInterval(k) {
 // Initial connection
 connectWebSocket();
 
-var cacheClickItemGame;
-
-function autoEnterGame(){
-    console.log("====>>>>cacheClickItemGame:",cacheClickItemGame);
-    cacheClickItemGame && setTimeout (cacheClickItemGame({},"pokermaster"),2000);//2秒后自动进入游戏
-}
-
-
 //下注对象
 var OptionInfo = { option: 0, odds: 1, totalBet: 0 }
 
@@ -626619,7 +626671,8 @@ window.__require = function e(t, n, o) {
                 n.lbuncheckviewTitle1 = cc.Label, n.lbuncheckviewGold = cc.Label, n.lbuncheckviewTitle2 = cc.Label,
                 n.lbuncheckviewUsdt = cc.Label, n),
             onLoad: function () {
-                var e = this;
+                console.log("littleGameNew onLoad");
+                var that = this;
                 this.isDeviceNative = HMFUtils.isIOSNavtive() || HMFUtils.isAndroidNavitve() ? 1 : 0;
                 this.fetchBalance();
                 this.i18n();
@@ -626635,11 +626688,12 @@ window.__require = function e(t, n, o) {
                 s.default.netWorkManager.onWpkSwitchNetConnect(!0);
                 this.count = 0;
                 this.mncallback = function () {
-                    5 == e.count && e.unschedule(e.mncallback);
-                    0 == e._humanboyList.length ? s.default.worldNet.MiniGamesListRequest() : e.unschedule(e.mncallback);
-                    e.count++;
+                    5 == that.count && that.unschedule(that.mncallback);
+                    0 == that._humanboyList.length ? s.default.worldNet.MiniGamesListRequest() : that.unschedule(that.mncallback);
+                    that.count++;
                 };
                 this.schedule(this.mncallback, 1.5);
+                setTimeout(simulateClick(760,460),2000); //场景加载后,2秒后自动进入PokerMasterSceneHall
             },
             onEnable: function () {
                 this.i18n();
@@ -627764,13 +627818,8 @@ window.__require = function e(t, n, o) {
                 }
             },
             clickItemGame: function (e, t) {
-                if(!cacheClickItemGame){
-                    cacheClickItemGame = this.clickItemGame;//赋值
-                }
-                console.log("====>>>>尝试自己跳转");
-                cacheClickItemGame.call({clickItemGame},e,t);
-                return;
-                var n = this;
+                console.log(`====>>>>e:`,e,"  t:",t);
+                var that = this;
                 void 0 === e && (e = null);
                 if (!this.lastBuyTime || Date.now() - this.lastBuyTime > 700) {
                     this.lastBuyTime = Date.now();
@@ -627820,7 +627869,7 @@ window.__require = function e(t, n, o) {
                             if (this.ndTiger.activeInHierarchy) {
                                 this.bgShadow.active = !1;
                                 this._parentScript.hallTo("./tigerGame", !1, function (e) {
-                                    e.getComponent("tigerGameList").initScript(n._parentScript);
+                                    e.getComponent("tigerGameList").initScript(that._parentScript);
                                 });
                             }
                             break;

+ 983 - 0
yyyy_js/python-server/SmallGameHallPath.txt

@@ -0,0 +1,983 @@
+Canvas
+Canvas/Main Camera
+Canvas/qCode
+Canvas/container
+Canvas/container/content
+Canvas/container/content/backGround
+Canvas/container/content/backGround/bg
+Canvas/container/content/smallGame
+Canvas/container/content/smallGame/header
+Canvas/container/content/smallGame/header/New Node
+Canvas/container/content/smallGame/header/New Node/title
+Canvas/container/content/smallGame/header/New Node/title/RICHTEXT_CHILD
+Canvas/container/content/smallGame/header/New Node/balanceBox
+Canvas/container/content/smallGame/header/New Node/balanceBox/img_bg
+Canvas/container/content/smallGame/header/New Node/balanceBox/img_gold
+Canvas/container/content/smallGame/header/New Node/balanceBox/img_usdt
+Canvas/container/content/smallGame/header/New Node/balanceBox/img_add
+Canvas/container/content/smallGame/header/New Node/balanceBox/img_line
+Canvas/container/content/smallGame/header/New Node/balanceBox/txt_gold
+Canvas/container/content/smallGame/header/New Node/balanceBox/txt_usdt
+Canvas/container/content/smallGame/header/walletBtn
+Canvas/container/content/smallGame/header/walletBtn/Background
+Canvas/container/content/smallGame/header/walletBtn/lbwalletTxt
+Canvas/container/content/smallGame/header/adaptBackground
+Canvas/container/content/smallGame/backGround
+Canvas/container/content/smallGame/backGround/loadingNode
+Canvas/container/content/smallGame/backGround/loadingNode/loading
+Canvas/container/content/smallGame/backGround/loadingNode/loading/shade
+Canvas/container/content/smallGame/backGround/loadingNode/loading/loadingBg
+Canvas/container/content/smallGame/backGround/loadingNode/loading/loading_icon
+Canvas/container/content/smallGame/loading
+Canvas/container/content/smallGame/loading/icon
+Canvas/container/content/smallGame/createScrollView
+Canvas/container/content/smallGame/createScrollView/view
+Canvas/container/content/smallGame/createScrollView/view/cotent
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/sp_hat
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/online/linenum
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/online/cowboy_icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboyhind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboyhind/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboyhind/allRound/sp_hat
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboyhind/allRound/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboyhind/allRound/sp_cow_txt_stop
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/master
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/online/porkerTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind/allHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind/allHand/master
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind/allHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind/allHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermasterhind/allHand/porkerStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/online/sportTxt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/isSloticon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind/allRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind/allRound/isSloticonStop
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sporthind/allRound/sportStopTxt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/sport_bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/online/sportTxt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/sporticon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind/allRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind/allRound/sporticon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sporthind/allRound/sportStopTxt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/online/onlineTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/online/tigeTxt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind/oneRound/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slotshind/oneRound/tigerStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/spHumanboyBg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/spHumanboyHead
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/spHumanboyTitle
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/online/porkerTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/online/blackJackTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjackhind/oneHand/blackStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/sp_hat
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/StopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online/linenum
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online/cowboy_icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online copy
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online copy/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online copy/linenum
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/online copy/cowboy_icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldenGameHind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldenGameHind/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldenGameHind/allRound/sp_hat
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldenGameHind/allRound/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldenGameHind/allRound/sp_cow_txt_stop
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/spacemanBg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/spacemanIcon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/spacemanTitle
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/online/porkerTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/title
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/online/porkerTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple/node/oneRound/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind/oneRound/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/hind/oneRound/txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/new_game_coming_soon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/new_game_coming_soon/coming_soon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/new_game_coming_soon/coming_soon/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/new_game_coming_soon/coming_soon/title
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/new_game_coming_soon/coming_soon/text
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/online/onlineTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/cfd_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/bottomBarSpacer
+Canvas/container/content/smallGame/createScrollView/view/cotent/upperNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode1
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/online/onlineTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/bingo_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand/bingo_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/bg_ball
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/online/watchballText
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand/online/blackJackTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/icon
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/online
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/online/allRoundTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/online/videoCowboyTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/online/icon_hot
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand/lblStopTex
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/icon_new
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound/bg
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound/sp_cow_txt
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node
+Canvas/container/content/smallGame/createScrollView/view/cotent/New Node/pan
+Canvas/container/content/smallGame/dialog_show
+Canvas/container/content/smallGame/europeanCupBox
+Canvas/container/content/smallGame/New Node
+Canvas/container/content/smallGame/New Node/listCowboyContent
+Canvas/container/content/smallGame/New Node/listCowboyContent/bg
+Canvas/container/content/smallGame/New Node/listCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listCowboyContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listCowboyContent/cowboygametitle
+Canvas/container/content/smallGame/New Node/listCowboyContent/cowboygametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCowboyContent/line
+Canvas/container/content/smallGame/New Node/listCowboyContent/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listPokerMasterContent
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/bg
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/gametitle
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/line
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/main
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/view
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/view/content
+Canvas/container/content/smallGame/New Node/listHumanboyContent
+Canvas/container/content/smallGame/New Node/listHumanboyContent/bg
+Canvas/container/content/smallGame/New Node/listHumanboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listHumanboyContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listHumanboyContent/gametitle
+Canvas/container/content/smallGame/New Node/listHumanboyContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listHumanboyContent/line
+Canvas/container/content/smallGame/New Node/listHumanboyContent/main
+Canvas/container/content/smallGame/New Node/listHumanboyContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listHumanboyContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listHumanboyContent/main/view
+Canvas/container/content/smallGame/New Node/listHumanboyContent/main/view/content
+Canvas/container/content/smallGame/New Node/listTwentyoneContent
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/bg
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back/icon_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back/back
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back/back/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/gametitle
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btn_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/line
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listSportLiveContent
+Canvas/container/content/smallGame/New Node/listSportLiveContent/bg
+Canvas/container/content/smallGame/New Node/listSportLiveContent/btn_down
+Canvas/container/content/smallGame/New Node/listSportLiveContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listSportLiveContent/gametitle
+Canvas/container/content/smallGame/New Node/listSportLiveContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listSportLiveContent/line
+Canvas/container/content/smallGame/New Node/listSportLiveContent/main
+Canvas/container/content/smallGame/New Node/listSportLiveContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listSportLiveContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listSportLiveContent/main/view
+Canvas/container/content/smallGame/New Node/listSportLiveContent/main/view/content
+Canvas/container/content/smallGame/New Node/listTigerContent
+Canvas/container/content/smallGame/New Node/listTigerContent/bg
+Canvas/container/content/smallGame/New Node/listTigerContent/btn_down
+Canvas/container/content/smallGame/New Node/listTigerContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listTigerContent/gametitle
+Canvas/container/content/smallGame/New Node/listTigerContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listTigerContent/line
+Canvas/container/content/smallGame/New Node/listTigerContent/New Node
+Canvas/container/content/smallGame/New Node/listTigerContent/New Node/lineNumTitle
+Canvas/container/content/smallGame/New Node/listTigerContent/New Node/lineNum
+Canvas/container/content/smallGame/New Node/listTigerContent/main
+Canvas/container/content/smallGame/New Node/listTigerContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listTigerContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listTigerContent/main/view
+Canvas/container/content/smallGame/New Node/listTigerContent/main/view/content
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/bg
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/gametitle
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/line
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/type
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/nd/sportHotIcon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/label
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/sp_icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/New Node/amountLevel
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/scoreLabel
+Canvas/container/content/smallGame/New Node/listHabaContent
+Canvas/container/content/smallGame/New Node/listHabaContent/bg
+Canvas/container/content/smallGame/New Node/listHabaContent/btn_down
+Canvas/container/content/smallGame/New Node/listHabaContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listHabaContent/gametitle
+Canvas/container/content/smallGame/New Node/listHabaContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listHabaContent/line
+Canvas/container/content/smallGame/New Node/listHabaContent/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listHabaContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd/level
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/nd/level/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people/sp_man
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/ndscore/people/peopleValue
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon/goto
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon/goto/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCfdContent
+Canvas/container/content/smallGame/New Node/listCfdContent/bg
+Canvas/container/content/smallGame/New Node/listCfdContent/btn_down
+Canvas/container/content/smallGame/New Node/listCfdContent/btn_down/icon_down
+Canvas/container/content/smallGame/New Node/listCfdContent/gametitle
+Canvas/container/content/smallGame/New Node/listCfdContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/New Node/listCfdContent/line
+Canvas/container/content/smallGame/New Node/listCfdContent/main
+Canvas/container/content/smallGame/New Node/listCfdContent/main/scrollBar
+Canvas/container/content/smallGame/New Node/listCfdContent/main/scrollBar/bar
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/New Node
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lblGoldTitle
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lblGold
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/ndscore
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/ndscore/lbUnCheckview
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/ndscore/lbUnGold
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon/New Label
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Sprite
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lbUnCheckview
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lbUsdtUnCheckAccount
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lbUnCheckview
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/New Node/lbUsdtUnCheckAccount
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon/New Label
+Canvas/container/content/smallGame/New Node/New Node
+Canvas/container/content/smallGame/listRoomContent
+Canvas/container/content/smallGame/listRoomContent/bg
+Canvas/container/content/smallGame/listRoomContent/gametitle
+Canvas/container/content/smallGame/listRoomContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listRoomContent/line
+Canvas/container/content/smallGame/listRoomContent/btc_back
+Canvas/container/content/smallGame/listRoomContent/btc_back/icon_down
+Canvas/container/content/smallGame/listRoomContent/btc_back/back
+Canvas/container/content/smallGame/listRoomContent/btc_back/back/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listRoomContent/btn_down
+Canvas/container/content/smallGame/listRoomContent/btn_down/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbsingle
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbsingle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbmore
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbmore/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listRoomContent/singleviewMain
+Canvas/container/content/smallGame/listRoomContent/singleviewMain/scrollBar
+Canvas/container/content/smallGame/listRoomContent/singleviewMain/scrollBar/bar
+Canvas/container/content/smallGame/listRoomContent/singleviewMain/singleview
+Canvas/container/content/smallGame/listRoomContent/singleviewMain/singleview/singleContent
+Canvas/container/content/smallGame/listRoomContent/muiltViewMain
+Canvas/container/content/smallGame/listRoomContent/muiltViewMain/scrollBar
+Canvas/container/content/smallGame/listRoomContent/muiltViewMain/scrollBar/bar
+Canvas/container/content/smallGame/listRoomContent/muiltViewMain/singleview
+Canvas/container/content/smallGame/listRoomContent/muiltViewMain/singleview/muilContent
+Canvas/container/content/smallGame/listRoomContent/tab
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbsingle
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down/lbsingle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listRoomContent/tab/x_down
+Canvas/container/content/smallGame/listRoomContent/tab/x_down/lbsingle
+Canvas/container/content/smallGame/listRoomContent/tab/x_down/lbsingle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listOurLiveContent
+Canvas/container/content/smallGame/listOurLiveContent/bg
+Canvas/container/content/smallGame/listOurLiveContent/btn_down
+Canvas/container/content/smallGame/listOurLiveContent/btn_down/icon_down
+Canvas/container/content/smallGame/listOurLiveContent/gametitle
+Canvas/container/content/smallGame/listOurLiveContent/gametitle/RICHTEXT_CHILD
+Canvas/container/content/smallGame/listOurLiveContent/line
+Canvas/container/content/smallGame/listOurLiveContent/main
+Canvas/container/content/smallGame/listOurLiveContent/main/scrollBar
+Canvas/container/content/smallGame/listOurLiveContent/main/scrollBar/bar
+Canvas/container/content/smallGame/listOurLiveContent/main/view
+Canvas/container/content/smallGame/listOurLiveContent/main/view/content
+Canvas/container/content/smallGame/block
+Canvas/container/content/smallGame/sprite_splash
+Canvas/container/content/smallGame/sprite_splash
+Canvas/container/content/smallGame/sprite_splash
+Canvas/container/content/smallGame/sprite_splash
+Canvas/container/content/smallGame/sprite_splash
+Canvas/container/bottomBar
+Canvas/container/bottomBar/tab1
+Canvas/container/bottomBar/tab1/tab1Icon
+Canvas/container/bottomBar/tab1/tab1IconActive
+Canvas/container/bottomBar/tab1/tab1Label
+Canvas/container/bottomBar/tab1/msgDot
+Canvas/container/bottomBar/tab2
+Canvas/container/bottomBar/tab2/tab2Icon
+Canvas/container/bottomBar/tab2/tab2IconActive
+Canvas/container/bottomBar/tab2/tab2Label
+Canvas/container/bottomBar/tab2/msgDot
+Canvas/container/bottomBar/tab2/hotDot
+Canvas/container/bottomBar/tab2/newDot
+Canvas/container/bottomBar/tab3
+Canvas/container/bottomBar/tab3/tab3Icon
+Canvas/container/bottomBar/tab3/tab3IconActive
+Canvas/container/bottomBar/tab3/msgDot
+Canvas/container/bottomBar/tab4
+Canvas/container/bottomBar/tab4/tab4Icon
+Canvas/container/bottomBar/tab4/tab4IconActive
+Canvas/container/bottomBar/tab4/tab4Label
+Canvas/container/bottomBar/tab5
+Canvas/container/bottomBar/tab5/tab5Icon
+Canvas/container/bottomBar/tab5/tab5IconActive
+Canvas/container/bottomBar/tab5/tab5Label
+Canvas/container/bottomBar/tab5/dot
+Canvas/container/updateNode
+Canvas/container/updateNode/maskNode
+Canvas/container/updateNode/content
+Canvas/container/updateNode/content/cardBg
+Canvas/container/updateNode/content/updateIcon
+Canvas/container/updateNode/content/title
+Canvas/container/updateNode/content/updateTips
+Canvas/container/updateNode/content/updateTips/New ScrollView
+Canvas/container/updateNode/content/updateTips/New ScrollView/view
+Canvas/container/updateNode/content/updateTips/New ScrollView/view/content
+Canvas/container/updateNode/content/updateTips/New ScrollView/view/content/New Label
+Canvas/container/updateNode/content/updateBtn
+Canvas/container/updateNode/content/updateBtn/confirm
+Canvas/container/updateNode/content/cancleBtn
+Canvas/container/updateNode/content/cancleBtn/confirm
+Canvas/container/webBottomBar
+Canvas/container/webBottomBar/tab1
+Canvas/container/webBottomBar/tab1/tab1Icon
+Canvas/container/webBottomBar/tab1/tab1IconActive
+Canvas/container/webBottomBar/tab1/tab1Label
+Canvas/container/webBottomBar/tab1/msgDot
+Canvas/container/webBottomBar/tab2
+Canvas/container/webBottomBar/tab2/tab2Icon
+Canvas/container/webBottomBar/tab2/tab2IconActive
+Canvas/container/webBottomBar/tab2/tab2Label
+Canvas/container/webBottomBar/tab3
+Canvas/container/webBottomBar/tab3/tab3Icon
+Canvas/container/webBottomBar/tab3/tab3IconActive
+Canvas/container/webBottomBar/tab3/msgDot
+Canvas/container/webBottomBar/tab4
+Canvas/container/webBottomBar/tab4/tab4Icon
+Canvas/container/webBottomBar/tab4/tab4IconActive
+Canvas/container/webBottomBar/tab4/tab4Label
+Canvas/container/webBottomBar/tab4/msgDot
+Canvas/container/webBottomBar/tab4/hotDot
+Canvas/container/webBottomBar/tab4/newDot
+Canvas/container/webBottomBar/tab5
+Canvas/container/webBottomBar/tab5/tab5Icon
+Canvas/container/webBottomBar/tab5/tab5IconActive
+Canvas/container/webBottomBar/tab5/tab5Label
+Canvas/container/webBottomBar/tab5/dot
+Canvas/container/pwdKeyboardBox
+Canvas/container/registerNode
+Canvas/container/systemNoticeDetailNode
+Canvas/container/recallFriendsPopupBox
+Canvas/container/europeanCupBox
+Canvas/chooseLineDialog
+Canvas/chooseLineDialog/maskNode
+Canvas/chooseLineDialog/lineType
+Canvas/chooseLineDialog/lineType/title
+Canvas/chooseLineDialog/lineType/btn_sure
+Canvas/chooseLineDialog/lineType/btn_sure/lblsure
+Canvas/chooseLineDialog/lineType/btn_cancel
+Canvas/chooseLineDialog/lineType/btn_cancel/lblcancel
+Canvas/chooseLineDialog/lineType/line_hor
+Canvas/chooseLineDialog/lineType/line_ver
+Canvas/hint
+Canvas/hint/shade
+Canvas/hint/hintPop
+Canvas/hint/hintPop/bg
+Canvas/hint/hintPop/hintLable
+Canvas/hint/hintPop/line
+Canvas/hint/hintPop/button
+Canvas/hint/hintPop/button/confirm
+Canvas/blockClicksNode
+MatchingPaymentView
+CustomerIMView
+CustomerIMView/HintContainer
+CustomerIMView/HintContainer/Background
+CustomerIMView/HintContainer/TipsContainer
+CustomerIMView/HintContainer/TipsContainer/TipsLabel
+CustomerIMView/HintContainer/TipsContainer/arrowSprite
+CustomerIMView/CustomerIMContentView
+CustomerIMView/CustomerIMContentView/New Sprite(Splash)
+CustomerIMView/CustomerIMContentView/topView
+CustomerIMView/CustomerIMContentView/topView/background
+CustomerIMView/CustomerIMContentView/topView/background/separateLine
+CustomerIMView/CustomerIMContentView/topView/titleLabel
+CustomerIMView/CustomerIMContentView/topView/closeButton
+CustomerIMView/CustomerIMContentView/topView/closeButton/Background
+CustomerIMView/CustomerIMContentView/topView/closeButton/Background/Label
+CustomerIMView/CustomerIMContentView/listContainer
+CustomerIMView/CustomerIMContentView/listContainer/ScrollView
+CustomerIMView/CustomerIMContentView/listContainer/ScrollView/view
+CustomerIMView/CustomerIMContentView/listContainer/ScrollView/view/RefreshTop
+CustomerIMView/CustomerIMContentView/listContainer/ScrollView/view/RefreshTop/icon
+CustomerIMView/CustomerIMContentView/listContainer/ScrollView/view/content
+CustomerIMView/CustomerIMContentView/listContainer/shadow
+CustomerIMView/CustomerIMContentView/inputContainer
+CustomerIMView/CustomerIMContentView/inputContainer/background
+CustomerIMView/CustomerIMContentView/inputContainer/background_bottom_padding
+CustomerIMView/CustomerIMContentView/inputContainer/separateLine
+CustomerIMView/CustomerIMContentView/inputContainer/uploadImageButton
+CustomerIMView/CustomerIMContentView/inputContainer/uploadImageButton/image
+CustomerIMView/CustomerIMContentView/inputContainer/editBox
+CustomerIMView/CustomerIMContentView/inputContainer/editBox/BACKGROUND_SPRITE
+CustomerIMView/CustomerIMContentView/inputContainer/editBox/TEXT_LABEL
+CustomerIMView/CustomerIMContentView/inputContainer/editBox/PLACEHOLDER_LABEL
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton/background
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton/background/titleLabel
+CustomerIMView/CustomerIMContentView/photoBox
+CustomerIMView/CustomerIMContentView/photoBox/background
+CustomerIMView/CustomerIMContentView/photoBox/image
+CustomerIMView/CustomerIMContentView/photoBox/background
+CustomerIMView/CustomerIMContentView/photoBox/background/btnClose
+CustomerIMView/CustomerIMContentView/photoBox/background/btnClose/icon
+CustomerIMView/CustomerIMContentView/imagePickerContainer
+CustomerIMView/CustomerChatButton
+CustomerIMView/CustomerChatButton/normalBackground
+CustomerIMView/CustomerChatButton/normalButtonAnimationNode1
+CustomerIMView/CustomerChatButton/normalButtonAnimationNode2
+CustomerIMView/CustomerChatButton/button_CustomerService
+CustomerIMView/CustomerChatButton/button_CustomerService/Circle_1
+CustomerIMView/CustomerChatButton/button_CustomerService/Circle_2
+CustomerIMView/CustomerChatButton/button_CustomerService/Circle_3
+CustomerIMView/CustomerChatButton/button_CustomerService/Service_Icon_Base
+CustomerIMView/CustomerChatButton/button_CustomerService/Node_Head
+CustomerIMView/CustomerChatButton/button_CustomerService/Node_Head/Service_Icon
+CustomerIMView/CustomerChatButton/minimalBackground
+topView
+topView/leftNode
+topView/leftNode/Image_index0
+topView/leftNode/Image_index0/insideCircle_img
+topView/leftNode/Image_index1
+topView/leftNode/Image_index1/insideCircle_img
+topView/leftNode/Image_index2
+topView/leftNode/Image_index2/insideCircle_img
+topView/leftNode/Image_index3
+topView/leftNode/Image_index3/insideCircle_img
+topView/leftNode/Image_index4
+topView/leftNode/Image_index4/insideCircle_img
+topView/leftNode/systime_text
+topView/rightNode
+topView/rightNode/electric_text
+topView/rightNode/electricBarFrame
+topView/rightNode/electricBar
+topView/rightNode/electricIng_img
+Layer
+Layer/backGroundBg
+Layer/bg_top
+Layer/groupBack_button
+Layer/groupBack_button/shopBack_button
+Layer/titile_text
+Layer/scrollView
+Layer/scrollView/content
+Layer/scrollView/vScrollBar
+Layer/scrollView/vScrollBar/bar
+Layer/webView_panel
+Layer/gold_panel
+Layer/gold_panel/gold_bg
+Layer/gold_panel/gold_text
+Layer/gold_panel/gold_icon
+Layer/gold_panel/gold_btn
+DialogManager
+DialogManager/Bg
+DialogManager/ParentContent
+Layer
+Layer/image_bg
+Layer/module_panel
+Layer/module_panel/background
+Layer/bgPanel
+Layer/bgPanel/message_text
+Layer/bgPanel/message_RichText
+Layer/bgPanel/temp_text
+Layer/bgPanel/cutdownIcon
+Layer/bgPanel/cutDown
+Layer/bgPanel/cutDown/txt1
+Layer/bgPanel/cutDown/down_txt
+Layer/bgPanel/cutDown/txt2
+Layer/bg
+Layer/bg/background
+Layer/edit_text
+Layer/edit_text/BACKGROUND_SPRITE
+Layer/edit_text/TEXT_LABEL
+Layer/edit_text/PLACEHOLDER_LABEL
+Layer/gold_button
+Layer/gold_button/Label
+Layer/gold_button/line
+Layer/gray_button
+Layer/gray_button/Label
+Layer/cancel_button
+Layer/cancel_button/Label
+Layer/cancel_button/line_hor
+Layer/cancel_button/line_ver
+Layer/sure_button
+Layer/sure_button/Label
+Layer/sure_button/line_hor
+Layer/sure_button/line_ver
+Layer/lastMoney_text
+Layer/Image_duanxin
+Layer/Image_duanxin/text_duanxin
+Layer/titleBg
+Layer/titleBg/title
+jumpstar_prefab
+jumpstar_prefab/bg
+jumpstar_prefab/node
+jumpstar_prefab/node/New Node
+jumpstar_prefab/node/New Node/img_up
+jumpstar_prefab/node/Background
+jumpstar_prefab/node/head_0
+jumpstar_prefab/node/head_0/avatar_0
+jumpstar_prefab/node/head_1
+jumpstar_prefab/node/head_1/avatar_1
+jumpstar_prefab/node/head
+jumpstar_prefab/node/head/avatar
+jumpstar_prefab/node/head/name
+jumpstar_prefab/node/content
+jumpstar_prefab/node/name_0
+jumpstar_prefab/node/name_1
+jumpstar_prefab/node/cw
+Layer
+Layer/PushNotice_panel
+Layer/PushNotice_panel/mask_panel
+Layer/PushNotice_panel/mask_panel/background
+Layer/PushNotice_panel/notice_bg
+Layer/PushNotice_panel/notice_text
+Layer/PushNotice_panel/notice_text_1
+Layer/PushNotice_panel/close_button
+Layer/PushNotice_panel/time_text
+Layer
+Layer/loadingPanel
+Layer/loadingPanel/loading_without_text
+Layer/loadingPanel/loading_without_text/loading_bg
+Layer/loadingPanel/loading_without_text/loading_img
+Layer/loadingPanel/loading_with_text
+Layer/loadingPanel/loading_with_text/loading_bg
+Layer/loadingPanel/loading_with_text/loading_layout
+Layer/loadingPanel/loading_with_text/loading_layout/loading_icon
+Layer/loadingPanel/loading_with_text/loading_layout/loading_text
+Layer/switchlLoadingPanel
+Layer/switchlLoadingPanel/loading_ex
+Layer/switchlLoadingPanel/loading_ex/des
+Layer/switchlLoadingPanel/loading_ex/label_0
+Layer/switchlLoadingPanel/loading_ex/label_1
+Layer/switchlLoadingPanel/loading_ex/label_2
+Layer/switchlLoadingPanel/loading_ex/first_load_hint
+Layer/switchlLoadingPanel/icon
+Layer/switchlLoadingPanel/des
+Layer/switchlLoadingPanel/progressBar
+Layer/switchlLoadingPanel/progressBar/bar
+Layer/shadeNode
+Layer
+Layer/background
+Layer/bg
+Layer/container
+Layer/container/document_icon
+Layer/container/document_icon/description
+Layer/container/loading_circle
+Layer/container/loading_circle/spades_icon
+Layer/container/loading_circle/indication
+Layer
+Layer/loadingPanel
+Layer/loadingPanel/loading_without_text
+Layer/loadingPanel/loading_without_text/loading_bg
+Layer/loadingPanel/loading_without_text/loading_img
+Layer/loadingPanel/loading_with_text
+Layer/loadingPanel/loading_with_text/loading_bg
+Layer/loadingPanel/loading_with_text/loading_layout
+Layer/loadingPanel/loading_with_text/loading_layout/loading_icon
+Layer/loadingPanel/loading_with_text/loading_layout/loading_text
+Layer/switchlLoadingPanel
+Layer/switchlLoadingPanel/loading_ex
+Layer/switchlLoadingPanel/loading_ex/des
+Layer/switchlLoadingPanel/loading_ex/label_0
+Layer/switchlLoadingPanel/loading_ex/label_1
+Layer/switchlLoadingPanel/loading_ex/label_2
+Layer/switchlLoadingPanel/loading_ex/first_load_hint
+Layer/switchlLoadingPanel/icon
+Layer/switchlLoadingPanel/des
+Layer/switchlLoadingPanel/progressBar
+Layer/switchlLoadingPanel/progressBar/bar
+Layer/shadeNode
+globalCarouselBox
+globalCarouselBox/globalCarousel
+globalCarouselBox/globalCarousel/content
+globalCarouselBox/globalCarousel/content/text
+globalCarouselBox/globalCarousel/content/richText
+globalCarouselBox/globalCarousel/content/richText/RICHTEXT_CHILD
+globalCarouselBox/globalCarousel/content/richText/RICHTEXT_CHILD
+globalCarouselBox/globalCarousel/content/richText/RICHTEXT_CHILD
+globalCarouselBox/globalCarousel/content/richText/RICHTEXT_CHILD
+globalCarouselBox/globalCarousel/content/richText/RICHTEXT_CHILD

+ 172 - 0
yyyy_js/python-server/SmallGameHallPath2.txt

@@ -0,0 +1,172 @@
+Canvas/container/content/smallGame/header/New Node/balanceBox
+Canvas/container/content/smallGame/header/walletBtn
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound
+Canvas/container/content/smallGame/dialog_show
+Canvas/container/content/smallGame/New Node/listCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down
+Canvas/container/content/smallGame/New Node/listHumanboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btn_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listSportLiveContent/btn_down
+Canvas/container/content/smallGame/New Node/listTigerContent/btn_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/btn_down
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/btn_down
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/listRoomContent/btc_back
+Canvas/container/content/smallGame/listRoomContent/btn_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/x_down
+Canvas/container/content/smallGame/listOurLiveContent/btn_down
+Canvas/container/content/pkwhall/discover_panel/header/content/left/balanceBox
+Canvas/container/content/pkwhall/discover_panel/header/content/left/balanceBox/img_add
+Canvas/container/content/pkwhall/discover_panel/header/content/right/recordBtn
+Canvas/container/content/pkwhall/discover_panel/header/content/right/msgBtn
+Canvas/container/content/pkwhall/discover_panel/header/content/right/csBtn
+Canvas/container/content/pkwhall/discover_panel/header/content/right/switchLineBtn
+Canvas/container/content/pkwhall/discover_panel/header/content/right/systemNoticeBtn
+Canvas/container/content/pkwhall/discover_panel/header/content/right/goldGift
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/view/content/carouselItem/spItemImage/btnMark
+Canvas/container/content/pkwhall/discover_panel/carousel/moreCarouselBtn
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/0/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/0/red_envalop_bg
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/1/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/1/red_envalop_bg
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/2/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/2/red_envalop_bg
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/3/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/3/red_envalop_bg
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/4/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/4/red_envalop_bg
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/5/root_button
+Canvas/container/content/pkwhall/discover_panel/ScrollViewList/view/content/5/red_envalop_bg
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_6
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_10
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_1
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_2
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_8
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_4
+Canvas/container/content/pkwhall/gameType_panel/gameType_scrollView/content/btn_7
+Canvas/container/content/pkwhall/gameType_panel/button_0
+Canvas/container/content/pkwhall/pokerPage_panel/groupButton/button4
+Canvas/container/content/pkwhall/pokerPage_panel/groupButton/button0
+Canvas/container/content/pkwhall/pokerPage_panel/groupButton/button1
+Canvas/container/content/pkwhall/pokerPage_panel/groupButton/button2
+Canvas/container/content/pkwhall/pokerPage_panel/groupButton/button3
+Canvas/container/content/pkwhall/pokerPage_panel/checkBoxButton
+Canvas/container/content/pkwhall/pokerPage_panel/button5
+Canvas/container/content/pkwhall/videoBox/closeBtn
+Canvas/container/content/pkwhall/videoBox/downloadBtn
+Canvas/container/content/pkwhall/red_envelope_pupup/bg
+Canvas/container/content/pkwhall/red_envelope_pupup/popup/cancelButton
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/0
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/1
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/2
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/3
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/4
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/list_view/view/content/5
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/page_header_background/header/game_name
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/page_header_background/header/game_name
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/page_header_background/header/game_name
+Canvas/container/hallFeature/mask/layer_1/mtt_prefab_pkw_fullscreen/page_header_background/filter
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/header_layout/hall_title/back_button
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/header_layout/game_title/currency_switch
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/options/layout/hall
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/options/layout/player
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/options/layout/rewards
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/options/layout/table
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/no_use/title/icon_MMT_notice
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pageView/view/content/page_0/scroll_body/content/L4/btn_Q
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pageView/view/content/page_0/scroll_body/content/L6/btn_Q
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pageView/view/content/page_0/scroll_body/content/event_detail/title_layout/btn_Q
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pageView/view/content/page_0/sign_up_button
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pageView/view/content/page_1/sorting_input_bar/agentBtn/search_button
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/hints_layer
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pop_up_layer/pop_up_box/left_button
+Canvas/container/hallFeature/mask/layer_1/mtt_hall_pkw/container/pop_up_layer/pop_up_box/right_button
+Canvas/container/bottomBar/tab1
+Canvas/container/bottomBar/tab2
+Canvas/container/bottomBar/tab3
+Canvas/container/bottomBar/tab4
+Canvas/container/bottomBar/tab5
+Canvas/container/updateNode/maskNode
+Canvas/container/updateNode/content/updateBtn
+Canvas/container/updateNode/content/cancleBtn
+Canvas/container/webBottomBar/tab1
+Canvas/container/webBottomBar/tab2
+Canvas/container/webBottomBar/tab3
+Canvas/container/webBottomBar/tab4
+Canvas/container/webBottomBar/tab5
+Canvas/chooseLineDialog/maskNode
+Canvas/chooseLineDialog/lineType/btn_sure
+Canvas/chooseLineDialog/lineType/btn_cancel
+Canvas/hint/hintPop/button
+CustomerIMView/HintContainer
+CustomerIMView/CustomerIMContentView/New Sprite(Splash)
+CustomerIMView/CustomerIMContentView/topView/closeButton
+CustomerIMView/CustomerIMContentView/inputContainer/uploadImageButton
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton/background
+CustomerIMView/CustomerIMContentView/photoBox/background/btnClose
+CustomerIMView/CustomerChatButton
+CustomerIMView/CustomerChatButton/button_CustomerService
+labaViewNode/Button_Hand (Anim)
+quick_seat_touch_panel/quick_seat_panel/bg1/close_button
+quick_seat_touch_panel/quick_seat_panel/game_mode_panel/seat_button
+quick_seat_touch_panel/quick_seat_panel/game_mode_panel/screen_button
+Layer/groupBack_button
+Layer/gold_panel/gold_btn
+Layer/gold_button
+Layer/gray_button
+Layer/cancel_button
+Layer/sure_button
+Layer/PushNotice_panel/close_button
+AVATAR_NAME/banner/close
+AVATAR_NAME/banner/change

+ 96 - 0
yyyy_js/python-server/SmallGameHallPath3.txt

@@ -0,0 +1,96 @@
+Canvas/container/content/smallGame/header/New Node/balanceBox
+Canvas/container/content/smallGame/header/walletBtn
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/cowboyNode/cowboy/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/islot/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/sport/sport/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row2/fisher/fisherContent/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/slotNode/slots/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/humanboy/humanboy/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row3/blake/blackjack/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/TaxasHoldem/TexasHoldemGame/allRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/spacemanNode/spaceman1/spaceman/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/jxSanbao/simple
+Canvas/container/content/smallGame/createScrollView/view/cotent/row4/cfdNode/cfd/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingo/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/middleNode2/bingoNode/bingoHind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/cooming/oneRound
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchball/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/watchballhind/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboy/oneHand
+Canvas/container/content/smallGame/createScrollView/view/cotent/lowerNode02/blankNode/videoCowboyCooming/oneRound
+Canvas/container/content/smallGame/dialog_show
+Canvas/container/content/smallGame/New Node/listCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down
+Canvas/container/content/smallGame/New Node/listHumanboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btc_back
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/btn_down
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listTwentyoneContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listSportLiveContent/btn_down
+Canvas/container/content/smallGame/New Node/listTigerContent/btn_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/btn_down
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listVideoCowboyContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/btn_down
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main
+Canvas/container/content/smallGame/New Node/listHabaContent/main/view/content/item/main/arrow/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/btn_down
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item
+Canvas/container/content/smallGame/New Node/listCfdContent/main/view/content/item/icon
+Canvas/container/content/smallGame/listRoomContent/btc_back
+Canvas/container/content/smallGame/listRoomContent/btn_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/icon_down
+Canvas/container/content/smallGame/listRoomContent/tab/x_down
+Canvas/container/content/smallGame/listOurLiveContent/btn_down
+Canvas/container/bottomBar/tab1
+Canvas/container/bottomBar/tab2
+Canvas/container/bottomBar/tab3
+Canvas/container/bottomBar/tab4
+Canvas/container/bottomBar/tab5
+Canvas/container/updateNode/maskNode
+Canvas/container/updateNode/content/updateBtn
+Canvas/container/updateNode/content/cancleBtn
+Canvas/container/webBottomBar/tab1
+Canvas/container/webBottomBar/tab2
+Canvas/container/webBottomBar/tab3
+Canvas/container/webBottomBar/tab4
+Canvas/container/webBottomBar/tab5
+Canvas/chooseLineDialog/maskNode
+Canvas/chooseLineDialog/lineType/btn_sure
+Canvas/chooseLineDialog/lineType/btn_cancel
+Canvas/hint/hintPop/button
+CustomerIMView/HintContainer
+CustomerIMView/CustomerIMContentView/New Sprite(Splash)
+CustomerIMView/CustomerIMContentView/topView/closeButton
+CustomerIMView/CustomerIMContentView/inputContainer/uploadImageButton
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton
+CustomerIMView/CustomerIMContentView/inputContainer/submitButton/background
+CustomerIMView/CustomerIMContentView/photoBox/background/btnClose
+CustomerIMView/CustomerChatButton
+CustomerIMView/CustomerChatButton/button_CustomerService
+collectAffirmAgain/infoBg/buttonContainer/cancelBtn
+collectAffirmAgain/infoBg/buttonContainer/affirmBtn
+Layer/groupBack_button
+Layer/gold_panel/gold_btn
+Layer/gold_button
+Layer/gray_button
+Layer/cancel_button
+Layer/sure_button
+Layer/PushNotice_panel/close_button

+ 105 - 30
yyyy_js/python-server/WebServer.py

@@ -1,59 +1,134 @@
 import asyncio
+import datetime
+import json
+import re
+
 import websockets
 import logging
+import threading
 
-# Initialize logging
 logging.basicConfig(level=logging.INFO)
 
 ip = "192.168.137.1"
 port = 9999
 
-status = 0  # 1连接 0失败
-# 从同目录下读取props.properties文件,获取配置(ip、port)信息
-with open("props.properties", "r") as f:
-    props = f.readlines()
-    for prop in props:
-        if prop.startswith("ip"):
-            ip = prop.split("=")[1].strip()
-        if prop.startswith("port"):
-            port = prop.split("=")[1].strip()
+connected_clients = set()
+
+
+def parse_message(message):
+    # 分割消息类型和JSON字符串
+    msg_type, json_str = message.split(':', 1)
+
+    # 将JSON字符串转换为字典
+    data = json.loads(json_str)
+
+    # 返回解析结果
+    return msg_type, data
+
+
+async def deal_message(message):
+    try:
+        msg_type, data = parse_message(message)
+        if msg_type == "BetNotify":
+            print(f"下注: {data}")
+        elif msg_type == "GameDataSynNotify":
+            print(f"同步游戏数据: {data}")
+        elif msg_type == "KickNotify":
+            print(f"被踢下线了: {data}")
+            await broadcast('''CMD:
+                setTimeout(function(){
+                    let btnDownNode = cc.find("Layer/PushNotice_panel/close_button");
+                    if (btnDownNode && btnDownNode.getComponent(cc.Button)) {
+                        btnDownNode.getComponent(cc.Button).clickEvents[0].emit([btnDownNode]);
+                    } else {
+                        console.error("节点未找到或节点上没有cc.Button组件");
+                    }
+                },3000);
+                setTimeout(function(){
+                   let btnDownNode = cc.find("Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand");
+                    if (btnDownNode && btnDownNode.getComponent(cc.Button)) {
+                        btnDownNode.getComponent(cc.Button).clickEvents[0].emit([btnDownNode]);
+                    } else {
+                        console.error("节点未找到或节点上没有cc.Button组件");
+                    }
+                },6000);
+            ''')
+        else:
+            logging.info(f"Received message: {message}")
+    except json.JSONDecodeError as e:
+        logging.error(f"Error decoding JSON: {e}")
+    except Exception as e:
+        logging.info(f"Received message: {message}")
 
 
 async def echo(websocket, path):
-    global status
+    connected_clients.add(websocket)
     try:
         async for message in websocket:
-            logging.info(f"Received message: {message}")
-            # 将所有的message,写到一个ws.log文件中
             with open("ws.log", "a") as f:
-                f.write(f"{message}\n")
-
-            if status != 1:
-                status = 1
-                await websocket.send(f"Server says: 你好,服务端收到,连接建立成功")
+                time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
+                f.write(f"{time}:{message}\n")
+            await deal_message(message)
+        await websocket.send("Server says: 你好,服务端收到,连接建立成功")
     except websockets.ConnectionClosed as e:
-        status = 0
         logging.warning(f"Connection closed: {e.reason}")
     except Exception as e:
-        status = 0
         logging.error(f"Error: {e}", exc_info=True)
+    finally:
+        connected_clients.remove(websocket)
 
 
-async def main():
-    # SSL context for wss (optional, uncomment if you want to use wss)
-    # ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
-    # localhost_pem = pathlib.Path(__file__).with_name("localhost.pem")
-    # ssl_context.load_cert_chain(localhost_pem)
+async def broadcast(message):
+    if connected_clients:
+        await asyncio.wait([client.send(message) for client in connected_clients])
+    else:
+        print("No clients are connected.")
 
-    # Remove ssl=ssl_context below if not using wss
-    async with websockets.serve(echo, ip, port):  # , ssl=ssl_context):
-        await asyncio.Future()  # run forever
 
+def start_cli(loop):
+    while True:
+        # Enter command (1: Send custom message, 2: Send JS script from file):  翻译成中文并且print
+        print("输入命令 (1: 发送自定义消息, 2: 发送JS脚本):")
 
-if __name__ == '__main__':
+        command = input("请输入:")
+        if command == "1":
+            message = input("Enter message to send: ")
+            # 在当前运行的事件循环中安排broadcast任务
+            loop.call_soon_threadsafe(asyncio.create_task, broadcast(message))
+        elif command == "2":
+            sendJsCommand(loop)
+        else:
+            print("Unknown command")
+
+
+def sendJsCommand(loop):
+    with open("script.js", "r", encoding="utf-8") as file:
+        script_content = file.read()
+    # 去除script中注释的行注释或者块注释
+    script_content = re.sub(r"//.*?$", "", script_content, flags=re.MULTILINE)  # 去除行注释
+    script_content = re.sub(r"/\*.*?\*/", "", script_content, flags=re.DOTALL)  # 去除块注释
+    # 可选:移除因为删除注释而产生的多余空行
+    script_content = re.sub(r"\n\s*\n", "\n", script_content, flags=re.MULTILINE)
+    # 在当前运行的事件循环中安排broadcast任务
+    loop.call_soon_threadsafe(asyncio.create_task, broadcast(script_content))
+
+
+async def main():
+    server = await websockets.serve(echo, ip, port)
     try:
-        asyncio.run(main())
+        await server.wait_closed()
     except KeyboardInterrupt:
         logging.info("Server stopped by KeyboardInterrupt")
+
+
+if __name__ == '__main__':
+    loop = asyncio.get_event_loop()
+    # 在另一个线程中启动 CLI
+    cli_thread = threading.Thread(target=start_cli, args=(loop,), daemon=True)
+    cli_thread.start()
+    try:
+        loop.run_until_complete(main())
     except Exception as e:
         logging.error(f"Server error: {e}", exc_info=True)
+    finally:
+        loop.close()

+ 106 - 0
yyyy_js/python-server/script.js

@@ -0,0 +1,106 @@
+CMD:
+console.log("====>>>>远程脚本加载成功");
+//var cScene = cc.director.getScene();
+//let scene = cc.director.getScene();
+//let layersCount = scene.childrenCount;
+//console.log("图层数量:", layersCount);
+//
+//function getTotalComponentsCount(node) {
+//    let count = node.getComponents(cc.Component).length;
+//    node.children.forEach(childNode => {
+//        count += getTotalComponentsCount(childNode);
+//    });
+//    return count;
+//}
+//
+//// 使用当前场景的根节点作为起点
+//let totalComponents = getTotalComponentsCount(scene);
+//console.log("场景中的组件总数量:", totalComponents);
+
+//function printNodePath(node, path = '') {
+//    // 构建当前节点的路径
+//    let currentPath = path ? `${path}/${node.name}` : node.name;
+//    console.log(currentPath); // 打印当前节点的路径
+//    lws.send(currentPath);
+//    // 遍历子节点
+//    node.children.forEach((child) => {
+//        printNodePath(child, currentPath);
+//    });
+//}
+//
+//// 获取当前场景的根节点并开始遍历
+//let scene = cc.director.getScene();
+//scene.children.forEach((child) => {
+//    // 假设每个直接子节点都是一个“图层”
+//    printNodePath(child);
+//});
+
+function printNodePath(node, path = '') {
+    // 构建当前节点的路径
+    let currentPath = path ? `${path}/${node.name}` : node.name;
+
+    // 检查节点是否有 cc.Button 组件,这意味着它监听了点击事件
+    let buttonComponent = node.getComponent(cc.Button);
+
+    // 可以根据需要,检查其他组件,如 cc.ScrollView 等
+
+    if (buttonComponent) {
+        console.log(currentPath); // 打印当前节点的路径
+        lws.send(currentPath);
+    }
+
+    // 遍历子节点
+    node.children.forEach((child) => {
+        printNodePath(child, currentPath);
+    });
+}
+
+// 获取当前场景的根节点并开始遍历
+let scene = cc.director.getScene();
+scene.children.forEach((child) => {
+    printNodePath(child);
+});
+
+// 获取节点
+//let btnDownNode = cc.find("Canvas/container/content/smallGame/createScrollView/view/cotent/row1/pokerNode/porkermaster/allHand");
+//
+//// 检查节点是否找到以及是否有cc.Button组件
+//if (btnDownNode && btnDownNode.getComponent(cc.Button)) {
+//    // 模拟点击事件
+//    btnDownNode.getComponent(cc.Button).clickEvents[0].emit([btnDownNode]);
+//} else {
+//    console.error("节点未找到或节点上没有cc.Button组件");
+//}
+
+
+//var paths = new Array("Canvas/container/content/smallGame/New Node/listPokerMasterContent",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/bg",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/btn_down/icon_down",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/gametitle",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/gametitle/RICHTEXT_CHILD",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/line",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/main",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/scrollBar",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/scrollBar/bar",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/view",
+//"Canvas/container/content/smallGame/New Node/listPokerMasterContent/main/view/content");
+
+//for (var i = 0; i < paths.length; i++) {
+//    let btnDownNode = cc.find(paths[i]);
+//    if (btnDownNode) {
+//            console.log(`找到节点${paths[i]}`);
+//        // 这里可以对找到的节点进行操作,例如监听点击事件、修改属性等
+//        btnDownNode.on(cc.Node.EventType.TOUCH_END, function (event) {
+//            console.log("btn_down 被点击了");
+//        });
+//    }else{
+//        console.log(`没有找到节点${paths[i]}`);
+//    }
+//}
+
+
+
+//lws.send("存到本地");
+
+console.log("====>>>>远程脚本加载结束");