var fDesc=new Array();
fDesc[0] = "Very easy app to tune the Violin. Just click on the button and tune the Violin with the sound of the tuned string!
The app has:
- 10 pitches modes,
- Mode for automatic repeating of the playing sounds,
- Original instrument sound.
10 new pitches modes:
+ Baroque,
+ Scientific,
+ France1859,
+ New Philharmonic,
+ Concert Pitch,
+ Boston Symphony Orchestra,
+ New Berliner Philarmoniker,
+ Old Berliner Philharmoniker,
+ Renaissance
Have a lot of fun making music!!!
USERS FEEDBACK:
A great app. use it a lot for tuning my violin! - violinbow from United States";
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 = '';
}
}