var fDesc=new Array();
fDesc[0] = "Crayola® Animation Studio brings artwork to life!
It combines sequences of images to generate moving images, using a film frame metaphor.
See the previous frame as a shadow when you are drawing the current frame.
Create exciting moving images in minutes.
- Twelve realistic art tools simulating real art media
- Hundreds of pre-set colors or mix unique colors on digital palettes
- Hundreds of images and backgrounds to easily create animations
- Import any standard digital file
- Export in standard file formats for use in other programs
- Learn animation techniques with fun activities in the Activity Guide
- Quickly learn the program features with animated Program Tour
- Children learn basic animation and computer skills";
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 = '';
}
}