Answered
how to export epub version
app.epubExportPreferences.version = EpubVersion.EPUB3;
this code not working
app.epubExportPreferences.version = EpubVersion.EPUB3;
this code not working
epubExportPreferences is a property of the document or a book not the app, so the following should work
app.documents[0].epubExportPreferences.version = EpubVersion.EPUB3
-Manan
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.