Quantcast
Channel: Adobe Community: Message List
Viewing all articles
Browse latest Browse all 93817

Re: Update TOC from the Book Pane

$
0
0

The below script will take some time, but it will accomplish your wish.

 

myBookFile = File.openDialog("Choose the BOOK File", "INDB:*.indb", false);
app.open(File(myBookFile.fullName.toString()));
var myBook = app.activeBook;


for(var n=0; n < myBook.bookContents.length; n++)
{    app.open(File(myBook.bookContents[n].fullName.toString()));    for (var i = 0; i < app.activeDocument.allPageItems.length; i++)    {        var myPageItem = document.allPageItems[i];        if(myPageItem.getElements()[0].constructor.name == "TextFrame")        {            myPageItem.select();            try{                app.scriptMenuActions.itemByID(71442).invoke();            }catch(e){}        }    }    app.activeDocument.close(SaveOptions.YES);
}
app.activeBook.close(SaveOptions.YES);

 

 

Vandy


Viewing all articles
Browse latest Browse all 93817

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>