使用字符串变量 AS3 访问 MovieClip
我有一个关于使用变量访问 MovieClip 的一般问题。
这是我试图实现的代码的超级精简版本:
var mcVar:String = MC1;
addEventListener(Event.ENTER_FRAME, eF);
function eF(e:Event):void{
if (BGMov.[mcVar].currentFrame >= 10){
BGMov.gotoAndStop(2);
}
}
这有可能吗? 非常感谢任何帮助! 干杯, 西蒙
I've a general question on accessing a MovieClip by using a variable.
Here's a super stripped down version of the code I'm trying to implement:
var mcVar:String = MC1;
addEventListener(Event.ENTER_FRAME, eF);
function eF(e:Event):void{
if (BGMov.[mcVar].currentFrame >= 10){
BGMov.gotoAndStop(2);
}
}
Is this a possibility?
Any help is greatly appreciated!
Cheers,
Simon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
我相信你只需要确保 mcVar 是一个字符串并且方括号之前没有点。然而,这还没有经过测试,因为我现在还没有打开 Flash。
Try this:
I believe you just need to make sure
mcVar
is a string and there is no dot before the square bracket. However this is untested as I haven't got Flash open right now.