On Wed, Jan 7, 2009 at 4:13 PM, Sander Schuurman <[email protected]> wrote:
> I want to make a Class that contains MotionBlur methods that I can call like > this: MotionBlur.coordBlur(mc, 1.5); [snip] > But I get the following error: (even if I just call the method outside > tweenmax like this MotionBlur.coordBlur(chick, 2);) > 1120: Access of undefined property MotionBlur. I don't see anything wrong with your code. You've probably put your class into a package (?), in which case you'll have to import it. import my.package.MotionBlur; The compiler is unable to find the class. Manish _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

