AS2 动态影片剪辑选择

发布于 2024-09-08 08:57:58 字数 316 浏览 6 评论 0原文

如果我在 _root 中有名为“test1”、“test2”和“test3”的影片剪辑,我可以使用:

for(i = 1; i <= 3; i++){
   _root['test'+i]._x = 100;
}

如果我所有的测试 mc 都在另一个名为布局的 mc 中,如何使用“_root['mc']”选择方法。

我已经尝试过,但出现语法错误。

for(i = 1; i <= 3; i++){
   layout.['test'+i]._x = 100;
}    

If I have movieclips called "test1", "test2" and "test3" in the _root, I can use:

for(i = 1; i <= 3; i++){
   _root['test'+i]._x = 100;
}

How do i use the "_root['mc']" selection method if all my test mc's are in another mc called layout.

I have tried this but got a syntax error.

for(i = 1; i <= 3; i++){
   layout.['test'+i]._x = 100;
}    

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

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

发布评论

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

评论(1

筱果果 2024-09-15 08:57:58

我认为您收到语法错误,因为您有 layout.['test'+i] 而不是 layout['test'+i]

I think you are getting the syntax error because you have layout.['test'+i] instead of layout['test'+i]

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