I also wanted to let the community know there's a new add-in for Symyx Notebook that allows the user to send structures directly to DS Visualizer from any notebook section that can provide molfile strings.
If you are interested or have feed back please send me an email.
Below is a screen shot of the addin in action.
The IronPython scripting looks like this:
import sys
import clr
from System.Windows.Forms import (MessageBox, MessageBoxButtons, MessageBoxIcon)
from System import (Exception)
clr.AddReference('DSVisualizerAddin')
from Symyx.Notebook.Addins import DSVisualizerAddin
dsv = None
table = owner
table.View.CommitPendingEdit()
try:
structure = table.GetSelectedRows()[0].PropertySets['Material']['Structure'].Value
dsv = DSVisualizerAddin(structure.Molfile, owner.Application.UserControl)
except Exception, ex:
MessageBox.Show('An error occurred: ' + ex.Message, 'DS Visualizer Addin', MessageBoxButtons.OK, MessageBoxIcon.Error)
The add-in is not formally supported, but I will personally strive to fix any issues reported as time / work allows.