var fDesc=new Array();
fDesc[0] = "- In Premiere, create the sequence you want to sync. Put the clips from each camera or audio recorder on their own tracks. Save the project.
- Start the PluralEyes for Premiere Pro application. (It is a standalone application, not a plug-in.)
- (CS4) Open the Premiere project file (.prproj) in PluralEyes.
- (CS5) In Premiere, export the project to Final Cut Pro XML format using the menu item File > Export > Final Cut Pro XML.... Open the exported file in PluralEyes.";
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 = '';
}
}