Apply BOTH BlendMode AND filter to same movieClip?

251 Views Asked by At

Im trying to create a 'neon glow effect thru a combination of both BlendModes and glow filter

Problem is, they seem to cancel each other out if applied together...not having any luch doing this dynamically.

Can anyone help?

1

There are 1 best solutions below

0
On BEST ANSWER

You could try something like:

  • Apply BlendMode to your graphic
  • Use BitmapData, and draw() your graphic so you get a new bitmap representation of it (pretty much what applying a blendmode or a filter will do anyway)
  • Apply your Filter to this new Bitmap
  • ???
  • Profit