var fDesc=new Array();
fDesc[1] = ", using backgrounds, animated graphics, music and sound effects. You can use the Lite Edition for free, if you want more complex functions, you will need to upgrade to the Pro Version. You can even sell the games you produce.";
fDesc[2] = "your hands to alter SWF files. You can simply modify or completely re-do your SWF movie even if you have lost the original FLA file.";
fDesc[3] = "programming environment is completely graphical. Games created with this software are built through elements that you can drag and paste as if they were LEGO pieces. Thus, creating a small program is a simple and fun process.";
fDesc[4] = "all dark crystals containing the power of orks. Gnomzy is an entertaining and fairy-tale game.";
fDesc[5] = "sprites!";
fDesc[6] = "the right place. DS Game Maker allows you to make exciting DS Games, without the need to write a single line of code. Making games with DS Game Maker is a lot of fun. Now there is no reason why you cannot become an amateur or hobbyist game maker. DS Game Maker is the only quick and easy way to bring your ideas to life on the DS.";
fDesc[7] = "extract all the shapes, sprites and images like data from it for further use. Additionally, you can see every detail of the flash video, like number of frames, frame rate (fps), resolution details and background color.";
fDesc[8] = "Web page or for a presentation. The animation can be created from pictures, 3D text and shapes with soft-edged shadow or opacity.";
fDesc[10] = ", flash files. Creating images slideshow / animated sprites / flash based screen savers without progamming. Creating single self-installing screen savers with user registration function.";
fDesc[11] = "multi-frame BMP/PNG sprites, 3D text, digital clock, create your own Web-ready logos, full preview. The unregistered copy displays registration reminders. The trial copy is full-featured now except for the on-screen registration link.";
fDesc[12] = "and tiles, MDI interface, multiple layers support and plugin support for your favorite (own) format.";
fDesc[13] = "Visual Basic, VB.NET, Visual C#, ASP and ASP.NET. Can use FLV, SWF, EMF, JPG, BMP, PNG, TIFF, GIF as input, can export EXE and SCR files";
fDesc[15] = "Visual Basic, VB.NET, Visual C#, ASP and ASP.NET. Can use FLV, SWF, EMF, JPG, BMP, PNG, TIFF, GIF as input, can export EXE and SCR files";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}