There is a feature in 3ds Max called "Add Pop-up Note". The feature works perfectly if I follow the manual process described in Tudor Nita's post here , but I'm having a hard time finding the correct API calls in the MAXScript Documentation .
Can someone tell me which MAXScript function(s) I should call to embed a Pop-up Note in a *.max file programmatically?
This trivial code seems to allow me to programmatically set the Author and Comments file properties, but it does not seem to display the cool dialog box that Nita demonstrated:
loadMaxFile "d:\\3DSTestBed\fileToProcess.max"
fileProperties.addProperty #summary "Author" "Shawn Eary"
fileProperties.addProperty #summary "Comments" "Rendered on an Amiga 5000 (I Wish...)"
saveMaxFile "d:\\3DSTestBed\processedFile.max"
It would be really neat if I could not only programmatically update the file properties, but also have them display in the dialog box that Nita mentioned when a *.max file was loaded.