Hello !
I’m having the same issue. I use a vbs script to run a Batch Process on a lot of files (thousands) in a batch farm.
WaveLab gets stuck at the end of the process, the UI doesn’t close and i got the message “xxxx.wav is being processed. It cannot be closed now” even though there is no file opened in the window. This is my VB script :
if WScript.Arguments.Count = 0 then
WScript.Echo "You need params!..."
WScript.Quit
end if
Dim app
Set app = CreateObject("WaveLabPro9_5.Application")
While app.IsReady() = False
WScript.Sleep(100)
Wend
REM For i = 0 to WScript.Arguments.Count - 1
REM WScript.Echo Wscript.Arguments(i)
REM Next
Dim batchProcessor
Set batchProcessor = CreateObject("WaveLabPro9_5.BatchProcess")
Call batchProcessor.ClearFileList()
Call batchProcessor.Open(Wscript.Arguments(0))
Dim i
For i = 1 to WScript.Arguments.Count - 1
Call batchProcessor.AddFile(Wscript.Arguments(i))
Next
Call batchProcessor.Run(true)
Call batchProcessor.Close()
While app.IsReady() = False
WScript.Sleep(100)
Wend
app.Quit()
Also, can anyone point me to the Wavelab inner scripting documentation ? I heard we could use javascript inside WaveLab but i can’t find any information on it.