Ver 5 Notes Feature - Possible to write a note within a script?

 From:  Michael Gibson
10793.2 In reply to 10793.1 
Hi Ed,

re:
> That's a great feature. Is it possible to create or append a note via a script?

Yes, it's a property script can access through moi.geometryDatabase.notes .

So for example:

var notes = moi.geometryDatabase.notes;

moi.geometryDatabase.notes = 'set notes to this';

moi.geometryDatabase.notes += 'add this to notes';


The next v5 beta will have an additional channel of document and object user text available for scripts to store data attached to the .3dm file or to individual objects. Those will be stored as key/value pairs so that a script can use its own unique key name and not stomp on some other script's data as can happen using notes as a script data store.

- Michael