var fDesc=new Array();
fDesc[0] = "The A-PRO control surface plug-in enables full control of all SONAR tracks, buses, plug-ins and other parameters from your A-PRO MIDI keyboard controller.
A-PRO highlights:
- 9 assignable rotaries
- 9 assignable sliders
- 8-button transport section
- 4 buttons, and 8 pads with a HOLD button that can be used for a variety of functions
- LCD display to provide parameter feedback
The information in this article applies to:
- A-800PRO MIDI Controller Keyboard
- A-500PRO MIDI Controller Keyboard
- A-300PRO MIDI Controller Keyboard
New in Control Surface Plug-in:
- Value encoder defaults to Jog across all banks
- Performance optimizations";
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 = '';
}
}