You guy used 5 paramater for transition, but any custom function and/or
Adobe flash easing function use 4, that throw a Error #1063
Here is the fix , in tweener class :
if(tTweening.transitionParams == null) {
nv = tTweening.transition(t, b, c, d);
}
else {
nv = tTweening.transition(t, b, c, d, tTweening.transitionParams);
}
if the parameter is null, don't shoot it. So now i can use flash easing
function and my custom :D:D
Original issue reported on code.google.com by kameleon...@gmail.com on 10 Mar 2009 at 5:26
Original issue reported on code.google.com by
kameleon...@gmail.com
on 10 Mar 2009 at 5:26