var fDesc=new Array(); fDesc[0] = "Initial attempt at a standalone program for working with the Bmp. Targa and Ace files used by Trainsim.
This program does not require my usual DLLs to do the graphics coding but contains all the necessary code internally.
It will let you load Bmp, Targa or a fairly wide range of Ace images and let you edit the image and alpha channel separately using any paint program (initial default - MSPaint).
Save your edited images as 32 bit Targa images or Export as Ace files (using MakeAce)."; 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 = ''; } }