just loaded up vegas 14 and starting messing with a video file and it seems when vegas tries to autosave?, it errors. i get the following:
C:\Users\brian\AppData\Local\Temp\scr0.cs(3) : The type or namespace name 'Sony' could not be found (are you missing a using directive or an assembly reference?)
C:\Users\brian\AppData\Local\Temp\scr0.cs(8) : The type or namespace name 'Vegas' could not be found (are you missing a using directive or an assembly reference?)
C:\Users\brian\AppData\Local\Temp\scr0.cs(20) : The type or namespace name 'Vegas' could not be found (are you missing a using directive or an assembly reference?)
i can click ok on the error and continue on, but the next time it decides to autosave or whatever it is trying to do, im presented with another error pop-up. i unistalled all my old sony software (movie studio 13 and vegas edit 13 steam edition) except for soundforge before installing vegas 14 suite. the app isnt crashing but this is still annoying.
edit:
i was able to locate the file referenced in the error
this is what is in it:
using System;
using System.Runtime.InteropServices;
using Sony.Vegas;
public class EntryPoint
{
public void FromVegas(Vegas myvegas)
{
try
{
DoWork(myvegas);
}
catch (Exception ex)
{
// myvegas.ShowError(ex);
}
}
private void DoWork(Vegas vegas)
{
double dFrameRate = vegas.Project.Video.FrameRate;
SetFrameRateToPlugin(dFrameRate);
}
[DllImport("TitlerPro2.ofx", CallingConvention = CallingConvention.StdCall)]
private static extern void SetFrameRateToPlugin(double frameRate);
}