We need the ability to be able to set multiple masks on the fly.
If you do:
mc1.setMask(myMask);
and then you add
mc2.setMask(myMask);
mc1 gets unmasked, of course we can put mc1 and mc2 into one mc and create mc3 then we can mask mc3 as follows
mc3.setMask(myMask);
But I don’t want to do it that way, period
Now since we [...]