var fDesc=new Array(); fDesc[0] = "FM Dreams Waveform Rederer renders noise-free digital waveforms using 4-op FM synthesis. It also uses PD synthesis to create a huge palette of waveforms from which to choose. This makes it a lot more powerful than other 4-op FM synths.

FM Dreams uses mathematical principles to generate sounds based on FM synthesis, where the frequency of one operator (waveform/oscillator) is used in the generation of another operator. This frequency dependency produces sidebands, which form the basis of an FM sound. Without going into specifics, it can create sounds not possible with any other forms of synthesis. These generated sounds can then be saved as normal Windows WAV files, and imported into your favorite sample editor or sampler."; 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 = ''; } }