全てのしおりのテキストをPDFとして書き出す
対応バージョン

3.0a 4.0 4.05 5.0 6.0 7.0
Windows
×
×
×



Macintosh
×
×
×



ポイント
bObj = bookmarkRoot.children[i];
bObj.name = i + 1 + ":" + bObj.name;
説  明
全てのしおりのテキスト(しおりの名前)をPDFとして書き出すにはreportオブジェクトを生成しwriteText()メソッドを使います。

サンプル

rep = new Report();
for (i=0; i<bookmarkRoot.children.length; i++)
{
rep.writeText(bookmarkRoot.children[i].name);
}
rep.open("report.pdf");

 
■サンプルスクリプトを実行する >> Acrobat で動作確認
補足説明
なし