var fDesc=new Array();
fDesc[0] = "Fantastic animations without Flash
With WebAnimator you easily create gorgeous and unique animations that run on all modern browsers, smartphones and tablets.
Interactive
Create interactive movies, ads and games. WebAnimator provides you a rich set of tools to achieve your aims.
Respond to events. Create animated buttons without even adding one line of code. The integrated event handlers help you to create animated menus or entire games.
Add multiple scenes to your animation
The breakdown on multiple scenes helps you to keep the overview.
Endless timelines are confusing and make the creation process too complicated.
Divide your animation into several scenes - like a real director. By doing this, you always be able to keep track of the important elements.
You can easily switch between scenes by clicking on an element, achieving a keyframe, by script or automatically at the end of a scene or timeline.
Works on all devices
We love Chrome, but we love the others too. WebAnimator animations run correctly all modern browsers.
Each browser handles code differently from the other, it has its own properties and it may support or not CSS. This complicates the life of developers and designers.
That's why we've made sure that WebAnimator will create code that runs on almost every browser equally, in order to give your users the best results.
[WebAnimator Plus] For the coders:
The WebAnimator API
You can easily access all elements on your stage with the ready-to-use API.
WebAnimator offers a rich set of API functions to access and manipulate all the elements in your animation.
In the integrated JavaScript editor with syntax highlighting you can write your own custom functions.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}