var fDesc=new Array();
fDesc[0] = "Spriteloq is a program that can import Flash SWFs to create spritesheets for Corona® apps. Spriteloq has an application that let's you load the SWFs and pack them into spritesheets. Also you have some optional Flash extensions that makes your life easier: Export Library as SWFs, Export Layout for Corona, Split by Frame Name.
Main features:
- Export multiple SWF files from Flash and pack them into sprite sheets for Corona, faster than ever before
- Gives you a simple & visual method of aligning related sprites, instead of the usual trial-and-error method via code
- Create layouts in Flash and export into Corona
- Removes the hassle of going back and forth between programs to determine the size and count of frames.";
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 = '';
}
}