JSFL 中的 AS 3.0 addChild 功能?

发布于 2024-10-31 09:58:49 字数 144 浏览 5 评论 0原文

除了将帧粘贴到图层内之外,还有其他方法可以将元素添加到时间轴中吗?我想将 addChild 功能从 actionScript 复制到 JSFL 中。所以基本上,我想将一堆 movieClips 实例添加到另一个影片剪辑中,有人知道如何在 JSFL 中执行此操作吗?提前致谢!

Is there a way besides pasting frames inside a layer to add an element into a timeline? I'd like to replicate the addChild functionality from actionScript into JSFL. So basically, I'd like to add a bunch of movieClips instances into another movie clip, does anyone know how to do this in JSFL? Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝礼 2024-11-07 09:58:49

可以这样完成:

var itemIndex = fl.getDocumentDOM().library.findItemIndex("childMovieClipName");
var theItem = fl.getDocumentDOM().library.items[itemIndex];
fl.getDocumentDOM().addItem({x:0,y:0}, theItem);

如果您想调整新子项的某些内容,请使用 doc.setElementProperty ,如下所示:

fl.getDocumentDOM().setElementProperty("x", 0);
fl.getDocumentDOM().setElementProperty("y", 0);

It can be done like this:

var itemIndex = fl.getDocumentDOM().library.findItemIndex("childMovieClipName");
var theItem = fl.getDocumentDOM().library.items[itemIndex];
fl.getDocumentDOM().addItem({x:0,y:0}, theItem);

If you want to adjust something of the new child, use doc.setElementProperty , like this:

fl.getDocumentDOM().setElementProperty("x", 0);
fl.getDocumentDOM().setElementProperty("y", 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文