Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AS3のライブラリから「itemX」(Xは数字)という名前のすべてのアイテムを取得したいと思います。どうすればいいですか?それが不可能な場合、同様のことをする方法はありますか?
for (var i = 0; i < 3; i++) { var myItem:Class = getDefinitionByName("item" + i.toString()) as Class; addChild(new myItem); }
返品用:
var mc:MovieClip = new myItem(); return mc;