我正在尝试使用p2p netconnection控制movieClip。我知道我可以控制movieClip的属性 - 比如
case "NetGroup.SendTo.Notify":
rover.x = event.info.message.x;
rover.y = event.info.message.y;
myFencer.fence.visible = event.info.message.visible;
我还可以控制一帧动作吗?以下不起作用---
case "NetGroup.SendTo.Notify":
score.FrameEvent = event.info.message.FrameEvent;
obj.Event = score.gotoAndStop("green");
答案 0 :(得分:0)
会有效。
我怀疑你的“绿色”标签。再次检查它。
这有效
_root.gotoAndStop(_currentframe+1);