var fDesc=new Array(); fDesc[0] = "Transcript came into being because of my dissatisfaction with using a seperate editor and picture viewer when transcribing digital images of old documents. I always had to switch between the editor and my image viewer when I needed to move the image so the next part would be visible.
I thought that it should be easier when this could be done from within one program. I couldn't find a program that did this though, so I decided that I would try to write such a program myself, and here is the result.
The basic idea is very simple. Divide the screen in two parts. In the upper half the image is shown and in the lower half you can edit the text. (As this is not an OCR program, the program does not convert the text. You have to do the transcription yourself.) The size of those windows can be changed as you wish.
From within the editor you can move the visible part of the image in many ways using shortcuts. You can also use keys to move to the previous or next image in the same directory. Besides that it is of course possible to use most of the common editor functions also found in other editors.
Transcipt has furthermore many options and additional functions which are designed to help make it easier for the user to transcribe an image.
By default the program remembers the exact position in the text and image where you were last time and goes back to that position when you start the program.
Transcript has an extensive help file containing context sensitive help. Use F1 to view this help file. It is advisable to read at least the most important items in this help file before you start using the program."; 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 = ''; } }