Disabling different mcs within same level

ok so i’m trying to disabled different mcs I have in the same level.


on (press) {
    _parent.selectClip = "p2";
    _parent.myFunc();
    this.enabled = false
    uc.enabled = false
}

when i press this mc with the instant name of “rc”, i’ll disabled with the code above and it works great.
but i have another mc i would like to disable as well which is in the same level of “rc
this other mc has the instant name of “uc
so i tried to do what you see above but only “rc” gets disabled but not “uc

i think i’m getting confuse with _root maybe or _parent… :h:

any help would be greatly appreciated.