I am trying to add a drop shadow look( without the offset) to a movie clip in Flash. Using the Actionscript below, I can add a drop shadow with an offset.
import flash.filters.DropShadowFilter;
var dropShadow:DropShadowFilter = new DropShadowFilter(5, 45, 0x333333, 20, 10, 10, 1, 2, false, false, false);
container_mc.filters = new Array(dropShadow);
How can I create a drop shadow effect without any offset ( all around the movie clip)?