October 17, 2008 MCの震度を変更する方法メモ。 最前面にするとき var lastIndex:int = 前面にするMCの親.numChildren - 1; 前面にするMCの親.setChildIndex(前面にするMC, lastIndex); (numChildren ・・・ この子リストに含まれる子の数) (例) var lastIndex:int = container.numChildren - 1; container.setChildIndex(this.menu_mc,lastIndex); 最背面にするとき 背面にするMCの親.setChildIndex(背面にするMC, 0); (例) container.setChildIndex(this.menu_mc,0); http://ameblo.jp/linking/entry-10069008383