Did updating to SVN Tweener break everything?
I had downloaded Tweener from http://code.google.com/p/tweener/ a few months ago but needed to use it on a few GlowFilters. After doing some research I find out that the SVN trunk has support for GlowFilter and various other special properties.
After updating Tweener the rest of my Tweens broke. I started getting these errors:
## [Tweener] Error: The property ‘_blur_blurX’ doesn’t seem to be a normal object property of [object MovieClip] or a registered special property.
I looked into caurina.transitions.properties.FilterShortcuts and saw that they were labeled _Blur_blurX (capitalized letter) but that didn’t solve the problem.
I finally stumbled upon a forum post saying you must manually initialize the shortcuts so they are registered as specialproperties.
Basically, import whatever properties branch you need, like
import caurina.transitions.properties.FilterShortcuts
Then, before you use Tweener:
FilterShortcuts.init();
Done. It all works as it used to.
Tweener.addTween( mc, {delay:1, time:2, _blur_blurX:3 } );


