I am wondering how I could create a dropshadow on a container that would give the appearance that the container is lower than its parent. Normally the dropshadow is applied primarily to the outside of the right and lower sides. What I want to achieve is a dropshadow to be applied to the inside of the top and left sides. The idea is to give the appearance that the container is embedded into its parent.

Any ideas would be greatly appreciated.

link|improve this question
feedback

1 Answer

Easy as pie: you need the inner property: DropShadowFilter#inner

Example:

<s:Rect width="100" height="100">
    <s:fill>
        <s:SolidColor color="0xff0000" />
    </s:fill>

    <s:filters>
        <s:DropShadowFilter inner="true" />
    </s:filters>
</s:Rect>
link|improve this answer
1  
Just note that the RectangularDropShadow is more performant. You can use the "angle" property to turn it to be within the top left corner rather than below the bottom right corner. Also note you need to put it on top of whatever you're shadowing, rather than below (in MXML, this means you define the Rect first, then the shadow). – Amy Blankenship Aug 22 '11 at 15:47
@Amy Thanks. Didn't know about that one. Do you perhaps know whether the performance difference will be noticeable on a regular PC/laptop? Or is RectangularDropShadow intended for mobile? – RIAstar Aug 22 '11 at 16:26
It probably depends on what else you're doing. For instance, if you're doing a lot of them on alpha transparent objects, it's possible. – Amy Blankenship Aug 22 '11 at 19:38
Great Guys, - I'm actually doing this in 3.5 but I came up with pretty much the same solution! Muchos Appreciation! – Beaker Aug 23 '11 at 14:39
@Beaker I still see a big fat zero and no green checkmark though. – RIAstar Aug 23 '11 at 15:12
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.