Steinberg WAVELAB 8.5 RETAIL SOFTWARE 45370 数据表

产品代码
45370
下载
页码 825
Personalizzazione
Informazioni sullo script
712
{
//work out next cursor time
var nextCursorPosition = i * activeWave.sampleRate();
//set cursor position forwards by a second
activeWave.setCursorPosition(nextCursorPosition);
//add a generic marker at the next cursor position and give it a name and comment
activeWave.addMarker(generic, "Marker "+i, "A comment for marker "+i);
//write some information about the new marker
var cursorTimeSecs = nextCursorPosition/activeWave.sampleRate();
logWindow.printInfo("created a new marker at " + cursorTimeSecs + " 
seconds");
}