Здравствуйте!
Хочу, чтоб вокруг текста было темное свечение, с эффектом умножения, но не знаю как это сделать. тут сделал только свечение:

Код AS3:
public static function noticeTextYellow(size:uint = 23):TextField
{
var _text:TextField = new TextField();
var _glowFilter:GlowFilter;
_glowFilter = new GlowFilter(0x000000, 1, 10, 10, 3, 2);
_text.defaultTextFormat = new TextFormat("Arial", size, 0xf3e85b, true, null, null, null, null, "center");
_text.selectable = false;
_text.multiline = true;
_text.wordWrap = true;
_text.filters = [_glowFilter];
return _text;
}