var fDesc=new Array(); fDesc[0] = "AnimationKnob Bitmap Generation Tool for VST developper.

In the VST plugin GUI development, you may need the AnimationKnob bitmaps that has stitched frames. KnobMan is a tool for the creation of the 'Knob' graphic images. The image strip is a continuous frames stitched vertical or horizontal. Though KnobMan is mainly designed for a VST-plugin GUI development, it may be useful if you need a image strip like this."; 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 = ''; } }