var fDesc=new Array(); fDesc[0] = "A nice Puzzle game with 2 ladybirds.
Dotty & Letty is an unique mix between sokoban and match 3. You control 2 ladybirds that have to clear a level of all blocks by linking at least 3 blocks of the same color.
- 25 levels
Controls
Movement:
-Arrow keys
-Clicking arrow icon in the side of character that you want to move in
Other actions:
-Undo: Backspace or clicking undo button
-Switching player: Enter or Clicking Switch player button
-Moving camera: Shift arrow keys or Hold down right mouse button and move cursor"; 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 = ''; } }