Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道 Flash CC/Html5 Canvas 转换:
MovieClip(root).play();
非常感谢您提前提供的帮助。
从 Flash CC 导出的动画有一个exportRoot全局变量,它本质上是添加到舞台的根影片剪辑。您应该能够从任何地方定位它:
exportRoot
exportRoot.play();
我设法自己弄清楚了。如果您的movieClip 在主时间线上,则在该movieClip 中您将使用以下代码:
this.parent.play();
'parent' 可以多次用于较低层,例如:
this.parent.parent.play();