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

Export bookmarks as csv file

Explorer ,
Apr 18, 2016 Apr 18, 2016

Copy link to clipboard

Copied

I have a script which exports bookmarks to a csv file.


The script actually works to a stage where the csv file is created and opened with the last book mark name being listed in the csv file.

All of the other bookmark names are not listed.

Some advise would be most appreciated in modifying the script to list all of the bookmarks in the csv file.

var bm = this.bookmarkRoot;

var ibmLength = bm.children.length;

for (var i = 0; i < ibmLength; i++)

var bookname = bm.children.name;

var fieldValues = [];

fieldValues.push(bookname);

this.createDataObject('output.csv', fieldValues.join());

this.exportDataObject({ cName:'output.csv', nLaunch:'2'});

thank you

TOPICS
Acrobat SDK and JavaScript

Views

6.7K

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 , Apr 19, 2016 Apr 19, 2016

You must use brackets for the for-loop:

var bm = this.bookmarkRoot;

var ibmLength = bm.children.length;

var fieldValues = [];

for (var i = 0; i < ibmLength; i++) {

  var bookname = bm.children.name;

  fieldValues.push(bookname);

}

this.createDataObject('output.csv', fieldValues.join());

this.exportDataObject({ cName:'output.csv', nLaunch:'2'});

Votes

Translate

Translate
Community Expert ,
Apr 19, 2016 Apr 19, 2016

Copy link to clipboard

Copied

You must use brackets for the for-loop:

var bm = this.bookmarkRoot;

var ibmLength = bm.children.length;

var fieldValues = [];

for (var i = 0; i < ibmLength; i++) {

  var bookname = bm.children.name;

  fieldValues.push(bookname);

}

this.createDataObject('output.csv', fieldValues.join());

this.exportDataObject({ cName:'output.csv', nLaunch:'2'});

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
Explorer ,
Apr 19, 2016 Apr 19, 2016

Copy link to clipboard

Copied

LATEST

Thank you very much Bernd.

The script is now functioning thanks for your help

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