Got a file not found error when trying to run a program using OTCE's media player plug-in and I tracked it down to the LearnFromClipboard.uhp.
It appears the plug-in is trying to access a *.brn file type that is no longer used:
Function StrCount()
Const ForReading = 1
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objTextFile = objFSO.OpenTextFile("C:\Program Files\Zabaware\Ultra Hal Assistant 6\LearnedText.brn", ForReading)
strText = objTextFile.ReadAll
objTextFile.Close
contents = Replace(strText, "<START>", Chr(

& " ", 1, - 1, vbTextCompare)
contents = Replace(contents, "", "", 1, - 1, vbTextCompare)
contents = Replace(contents, " ", " ", 1, - 1, vbTextCompare)
Str = contents
Str = Trim(Str)
StrCount = Str
End Function
------------------------------------------------------------------------------------------------------------------------------------------------------
Is there a way to fix this or should I just remove the plug-in and not worry about it since there are so many other ways for Hal to learn?