UPDATE ---------------------------->>>
Web Cartoon Maker (the animation program currently under development which is the planned successor to Tales Animator) is now being developed as both an online (free) and standalone (shareware) program. For the moment, the beta version of the standalone version is available for download. At present, any projects still have to be compiled online (free).
It is important to note that WCM uses a derivative of the programming language C++ so takes a while to learn. Nevertheless, this is an interesting project to keep an eye on.
http://www.webcartoonmaker.com/index.php
Examples of code currently given on the website (together with a demo) looks like this ...
Boy Max;
Max.SetVisible ();
Max.LeftArm.ChangeAngle ( 45, 2 );
// it takes 2 seconds to raise an arm by 45 degrees
Or if you need to make your character walk this is just one more line of code:
Max.GoesTo ( -100, 0, 4 );
// it takes 4 seconds to go to a point with coordinates ( 100, 0 )
Anyone familiar with Tales animator v.2 or v.3 will be able to see the similarity in coding language.