var fDesc=new Array();
fDesc[0] = "Can load ‘non-Player’ libraries like the Spitfire LABS, Harp, Piano, Harpsichord, Solo Strings etc. Please note that non-Player library instruments will not appear on the Kontakt libraries pane and so can’t be added as a library as Player libraries need to be.
Open up the Library Manager app and log in with your account email and password.
- Select the download you wish to re-download
- In the toolbar under Library > Reset Download > Entire Download/Latest Update
-This will reset your whole download/your latest update.";
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 = '';
}
}