Hi, are there know problems with Actuate running on HTML5 target?
I’m facing a strange problem: while the position and size of the object are correctly transformed, the rotation and alpha are not. These two are immediatelly set on tween call, like this:
Actuate.tween(this, 5, {
x: newx,
y: newy,
width: newwidth,
height: newheight,
alpha: newalpha,
rotation: newrotation
});
I even tried to run another tween just for the rotation with the “smartRotation”, but also without success:
Actuate.tween(this, 5, { rotation: newrotation }).smartRotation();
Is this a known problem?