var fDesc=new Array(); fDesc[0] = "MSynth is a virtual studio containing a sequencer and instruments like synthesizers and drumcomputers. Every note played by a instrument is triggered by the sequencer. All instruments' outputs are mixed together in the mixer. A effect rack can be routed over the mixer.
The mixer window and the effect rack can be opened from the view menu in the main window.
Every instrument has a channel in the arrange grid (row) and a mixer channel in the mixer window (column). The complete studio setting is saved as a song file (file suffix *.mxl). The song, all instruments structures, settings and sounds are saved in this file, the imported samples and samplebanks are saved in the same directory as the song."; 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 = ''; } }