0

我正在尝试使用 p2p 网络连接来控制电影剪辑。我知道我可以控制影片剪辑的属性——例如

case "NetGroup.SendTo.Notify":
rover.x = event.info.message.x;
rover.y = event.info.message.y;
myFencer.fence.visible = event.info.message.visible;

我还可以控制框架 Action 吗?以下不起作用---

case "NetGroup.SendTo.Notify":
score.FrameEvent = event.info.message.FrameEvent;

obj.Event = score.gotoAndStop("green");
4

1 回答 1

0

它会起作用的。

我怀疑你的“绿色”标签。再检查一遍。

这有效

_root.gotoAndStop(_currentframe+1);
于 2013-07-03T06:43:18.647 回答