var fDesc=new Array();
fDesc[0] = "Animate Me! creates GIF and AVI animations on the base of predefined effects (such as moving objects, small particles, running text, wave, shake, appearance, explosion, changing brightness).
Program features:
- loads background picture for created animation from BMP, JPEG, PSD, PCX, TGA, PNG and GIF- files;
- manages the list of animation effects and calls edit dialogs to set parameters of each effect;
- defines animation parameters: count of frames, delay and number of loops;
- builds animation on the base of list of animation effects;
- exports created animations to GIF, SWF and AVI- files;
- optimizes size of created GIF- files;
- saves animation scripts in AME- files;
- creates GIF and AVI- files from command line in batch mode;
- supports internationalization.";
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 = '';
}
}