I have a BitmapData object created dynamically that contains user-drawn shapes. I then attach that BitmapData object to a MovieClip via a Bitmap object and set that MovieClip as a mask to another MovieClip. The mask works but the whole bounding rectangle of the BitmapData is acting as the mask. But I want to exclude the transparent portion from the mask so only user-drawn shape can be set as mask. Can anyone tell how to achieve that? Thanks.

link|improve this question

64% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I see you already solved it (in the comments section). Posting it as an answer.
Set BOTH movieclip and mask cacheAsBitmap to true.

i.e.:

movieclip.cacheAsBitmap = true;  
movieclip_mask.cacheAsBitmap = true;
link|improve this answer
feedback

The thing you need to do is turn the bitmap caching on.

myMc.cacheAsBitmap = true; if I remember correctly ...

link|improve this answer
oops sorry, just noticed you figured it out already – Daniel Sep 15 '10 at 14:00
As said above, do this on the bitmap object as well. – Epskampie Aug 29 '11 at 10:28
feedback

Maybe you should try using the Bitmap itself as a mask , if you need that Bitmap to show, try creating another Bitmap using the transparent BitmapData and use that as a mask.

link|improve this answer
Tried setting the Bitmap directly as the mask. No luck! – Kayes Sep 15 '10 at 9:27
Have you tried playing with BlendMode ( forgetting about the mask I mean )? – PatrickS Sep 15 '10 at 9:32
4  
Well, I've done it! We must set the 'cacheAsBitmap' property of both the Bitmap (that will act as the mask) and the MovieClip (on which the mask will be set) to 'true'. Otherwise the mask won't work properly. – Kayes Sep 15 '10 at 11:03
Thanks to this post: blog.mattiasnorell.com/2010/04/16/… – Kayes Sep 15 '10 at 11:05
well done, thanks for the info! – PatrickS Sep 15 '10 at 12:01
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.