• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to save Ditamap as "book xx.0 with fm components" using ExtendScript?

New Here ,
Sep 24, 2018 Sep 24, 2018

Copy link to clipboard

Copied

I'm trying to write a ExtendScript Toolkit script to save a diamap file as a "book 11.0 with fm components".  When I do this manually I check the box "Prompt for Dita Val File" and select the appropriate Dita Val File.  In the code I've written so far I can open my dita map and save it as a .book file, but I don't know how to give it the location of the Dita Val File.  Anyone know how to add that to my saveParams?

var sourceDoc = openXmlFile("FilePath to diatmap goes here");

var path = "Output FilePath goes here";

saveToFm(sourceDoc, path);

function openXmlFile(filePath) { 

    var file = File(filePath);

    var fileName = file.fsName;

    var openParams = GetOpenDefaultParams(); 

    var retParams = new PropVals();

   

    var doc = Open(fileName, openParams, retParams);

    return doc; 

function saveToFm(fileObject, savePath) { 

    var saveParams = GetSaveDefaultParams(); 

    var i = GetPropIndex(saveParams, Constants.FS_FileType); 

    saveParams.propVal.ival = Constants.FV_SaveFmtBookWithFm; 

    var saveAsName = savePath; 

    var returnParamsp = new PropVals(); 

    fileObject.Save(saveAsName, saveParams, returnParamsp); 

TOPICS
Scripting

Views

619

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Sep 24, 2018 Sep 24, 2018

I got this from Adobe, but I haven't tried it.

FS_DitavalFile (type: string)

-Rick

Votes

Translate

Translate
Community Expert ,
Sep 24, 2018 Sep 24, 2018

Copy link to clipboard

Copied

I got this from Adobe, but I haven't tried it.

FS_DitavalFile (type: string)

-Rick

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 24, 2018 Sep 24, 2018

Copy link to clipboard

Copied

Thank you!  I added these lines to my saveToFm function and it works!

var i = GetPropIndex(saveParams, Constants.FS_DitavalFile); 

saveParams.propVal.sval = "FilePath to Dita Val File goes here"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 24, 2018 Sep 24, 2018

Copy link to clipboard

Copied

LATEST

Fantastic! Please mark my answer as Correct. Thanks.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines