iTween — Possible to animate then return back to original?

Seems a simple command but can’t find anything in the iTween documentation. Just want to animate ColorTo then make it rewind back to the starting position then end the animation.

Closest I can find is changing the loopType to pingpong but that just continues looping forever.

One way is to use the oncomplete and oncompletetarget parameters. So you call ColorTo() once going one direction, once it completes, it will call the method you specify, and you call ColorTo() again to take the colors back.