This content has been marked as final.
Show 2 replies
-
1. Re: Start a new book and add files
kevc63 Oct 2, 2014 2:22 PM (in response to kevc63)OK
This works for creating a book, anyone on adding documents?
var book = app.NewNamedBook ('fmbook');
var name = 'c:\\temp\\testbook.fm';
book.SimpleSave(name);
-
2. Re: Start a new book and add files
Russ Ward Oct 3, 2014 5:16 AM (in response to kevc63)Kevin,
I didn't test anything, but I would think this should work:
var comp = book.NewSeriesBookComponent(0);
comp.Name = "C:\\SomeDocumentPath";
etc.
Russ

