Saves a BrainVoyager project file using the current file name.
objDocument.Save()
Saves the referenced document to disk using the file name in the PathName property of objDocument.
' VBScript
Set doc = BrainVoyager.OpenDocument("cg_objects.fmr")
doc.LinkStimulationProtocol "cg_exp_r1.prt"
doc.Save
// JScript
doc = BrainVoyager.OpenDocument("cg_objects.fmr");
doc.LinkStimulationProtocol("cg_exp_r1.prt");
doc.Save();
#
PerlScript
$doc = $BrainVoyager->OpenDocument("cg_objects.fmr");
$doc->LinkStimulationProtocol("cg_exp_r1.prt");
$doc->Save();