Hi Everyone, I need a little help on this.
I want to mask a movie clip with another one, the mask is a dynamic square which expands to the whole scene.
Anyway, I wanted to now what is the relation between the layer of the masked movie and the mask itself,(should they be at the same level or not?):hangover: I use the above script:
_root.createEmptyMovieClip("mask", 22);
_root.createEmptyMovieClip("masked", 21);
masked.attachMovie("home_btn", "masky", 0);
_root.masked.masky.setMask("mask");
with (_root.mask) {
lineStyle(0, 0*000000, 100);
beginFill(0*FF0000, 40);
moveTo(38, 361);
lineTo(saita._x, 361);
lineTo(saita._x, saita._y);
lineTo(38, saita._y);
lineTo(38, 361);
mask.endFill();
}
Please help