How to get the list of all loaded Grasshopper documents?
import System
import Grasshopper
menu = Grasshopper.Instances.DocumentEditor.Controls[4].Items[6]
print menu.ToolTipText
How to get the list of all loaded Grasshopper documents?
import System
import Grasshopper
menu = Grasshopper.Instances.DocumentEditor.Controls[4].Items[6]
print menu.ToolTipText
try this:
A = Grasshopper.Instances.DocumentServer.DocumentNames;
Thanks Naruto