You should only create the bevel filter ONCE. Filters are _expensive_ and can/should be shared. Make your bevel an instance variable

private var myBevel:BevelFilter = new BevelFilter();

public function foo()
{
    myClip.filters = [myBevel];
}
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to