PDA

View Full Version : Masking Don't Work


interaktive
09-25-2006, 03:49 PM
I have a movie clip "mcMask" on one layer, and the masked movie animation in another layer with the instance name "mcMovie"

I placed this code on the action frame layer:

_root.mcMask.startDrag(true);
_root.mcMask.setMask(mcMovie);

What happens is, the masking works but the images in the movie clip are turning into blocked squares. Any ideas? Thanks

neilmmm
09-25-2006, 04:36 PM
try speech marks

_root.mcMask.setMask("mcMovie");

interaktive
09-25-2006, 05:34 PM
Thanks for the reply, but it doesn't work.

neilmmm
09-25-2006, 10:35 PM
you know without seeing your fla

i think it is the wrongway round

not

_root.mcMask.setMask("mcMovie");


but

_root.mcMovie.setMask("mcMask");