var fDesc=new Array(); fDesc[0] = "DreamPath Composer is a tool for creating books where the flow of the story is in the hands of the Player. DreamPath Composer will provide everything you need, from a text editor to the flow Controlling.
"Book" is the DreamPath's term of the entire game solution. The Book contains every piece of data you add, just like normal document or a picture. When you will finally finish your work you will give the Book file so others could play it.
Book's content:
1. Pages - each page represent a milestone in the story flow.
2. Items - the list of items a player can get while "reading the book" (playing the game)
3. Variables - the list of variables in the book."; 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 = ''; } }