Your Ad Here

Posted By

arpo on 10/12/09


Tagged


Versions (?)

Glow basics


 / Published in: ActionScript 3
 

  1. import flash.filters.GlowFilter;
  2. import flash.filters.BitmapFilterQuality;
  3.  
  4.  
  5. var flt:GlowFilter = new GlowFilter();
  6. flt.strength = 2;
  7. flt.quality = BitmapFilterQuality.HIGH;
  8. flt.color = 0xffff00;
  9. flt.alpha = 0.5;
  10. flt.blurY = 5;
  11. flt.blurX = 5;
  12. TargetMC.filters = [flt];

Report this snippet  

You need to login to post a comment.