AS3 使用保存 MC 名称的变量将影片剪辑添加到舞台
我知道如何从库中将影片剪辑添加到舞台,但是当我需要从库中加载影片剪辑且影片剪辑的名称保存在变量中时,我很难做到这一点。
for(var i:Number = 0; i < 64; i++)
{
var blueIconS:blueIcon = new blueIcon();
addChild(blueIconS);
blueIconS.x = 100;
blueIconS.y = 100;
}
上面的代码适用于添加 blueIcon,但我在该循环中有一个变量,它告诉要加载哪个图标。
sectorsMCs[jewelsIDs[i]]
上面将告诉我要加载什么 MC 名称,但是如何通过该变量值从库加载 MC?
I know how to add a movie clip to the stage from the library but i'm strugling to do it when the I need to load a movie clip from the library when the name of the movie clip is held in a variable.
for(var i:Number = 0; i < 64; i++)
{
var blueIconS:blueIcon = new blueIcon();
addChild(blueIconS);
blueIconS.x = 100;
blueIconS.y = 100;
}
The above code works for adding the blueIcon but I have a variable in that loop which tells which icon to load.
sectorsMCs[jewelsIDs[i]]
The above will tell me what MC name to load but how do I load a MC from library by that variable value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须将您的 MovieClip 链接到特定的类才能进行以下操作...
You may have to link your MovieClip to a specific class for the following to work...