We Recommend

Essential ActionScript 3.0 Essential ActionScript 3.0
The book focuses on the core language and object-oriented programming, but also adds a deep look at the centerpiece of Flash Player's new API: display programming. Enjoy hundreds of brand new pages covering exciting new language features, such as the DOM-based event architecture, E4X, and namespaces--all brimming with real-world sample code.


Posted By

zeman on 07/10/08


Tagged

textmate DropShadow Blur shadow


Versions (?)


dropshadow


Published in: ActionScript 3 


  1. var shadow:DropShadowFilter = new DropShadowFilter();
  2. shadow.distance = 5;
  3. shadow.angle = 25;
  4. shadow.alpha = 0.5;
  5. shadow.blurX = 8;
  6. shadow.blurY = 8;
  7.  
  8. fav.filters = [shadow];

Report this snippet 

You need to login to post a comment.