Java Rotation with Ease

  1. 7 years ago

    Hi all,

    I need to rotate an object, NOT using the Rotate action, but using Run Java action. Of course the java code for it would be:

    $("#obj7289").rotate(50)

    However, I was wondering if I can ease the rotation?

  2. For anyone interested, found the solution. You can rotate the object using this javascript code

    $("#obj7031").animate({rotate: 180}, speed);

    where "speed" is in milliseconds.

 

or Sign Up to reply!