AS2 动态影片剪辑选择
如果我在 _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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您收到语法错误,因为您有
layout.['test'+i]
而不是layout['test'+i]
I think you are getting the syntax error because you have
layout.['test'+i]
instead oflayout['test'+i]