fieldsye / actuate

Automatically exported from code.google.com/p/actuate
0 stars 0 forks source link

FilterActuator bug #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
trying code 

  target.filter = [new BlurFilter(0, 0)];
  Actuate.effects(target, duration).filter(0, {blurX: 20, blurY: 20 });

and get null pointer exception in FilterActiator.initialize at line 

  start = Number (filter[propertyName]);

can be fixed, changing constructor,  from

  filter = (target as DisplayObject).filters [filterIndex]; 

to

  this.filter = (target as DisplayObject).filters [filterIndex]; 

thanks

Original issue reported on code.google.com by sergthed...@gmail.com on 21 Apr 2010 at 6:35

GoogleCodeExporter commented 8 years ago
Thanks!

My apologies. Apparently there is no way to be notified when new bug report is 
posted.

You're absolutely right. I've just made the change on my end, and I'll try and 
push it out to Subversion and a ZIP soon

Thanks for pointing this out!

Original comment by joshuagr...@gmail.com on 10 Aug 2010 at 4:12

GoogleCodeExporter commented 8 years ago
Correction -- I figured out how to receive notifications, so hopefully there 
should be no more long delays in the future.

I'll comment again here once the updates are posted online. Until then, I'm 
sure you probably already have this fixed on your end. Thanks again

Original comment by joshuagr...@gmail.com on 10 Aug 2010 at 4:45

GoogleCodeExporter commented 8 years ago
On my end all's ok! ;) thanks for actuate

Original comment by sergthed...@gmail.com on 10 Aug 2010 at 4:48