I have a
MovieClip
which I compiled to SWC and imported to Flash Builder.The
MovieClip
has a masked (visible) area, and an invisible area which is hidden by the mask:I wrapped the MC in a
UIMovieClip
so that I could insert in the MXML of the application:<my:SomeMaskedControl bottom="0" />
In the MXML I set the attribute
bottom="0"
, I wanted theUIMovieClip
to sit at the bottom of the application. Unfortunately the invisible area of the MC is messing it up:I wanted it more like this:
I realize that I could just change the bottom
attribute to a negative value, but I think this would mess up the architecture of the application. Is there a way to fix it so that I can still use bottom="0"
?