var fDesc=new Array(); fDesc[0] = "SpriteDeck is a visual designer for Corona SDK. It is compatible with the latest version of Corona, on both Windows and Mac. There is no time limit for trial. However, you can do everything except saving “.deck” project files. In SpriteDeck, you can group objects into “scenes”. A “scene” is similar to the concept of “symbol” in Adobe Create Suite tools. SpriteDeck will generate two files for each scene. For example, if you have a scene named “MainLevel”, you will see “_mainlevel.lua” and “mainlevel.lua”. _mainlevel.lua contains the generated code based on the scene design. mainlevel.lua is the stub file where you can insert custom game logic."; 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 = ''; } }