全てのしおりのテキストをPDFとして書き出す |
|||||||||||||||||||
対応バージョン |
|
||||||||||||||||||
ポイント |
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 で動作確認 |
||||||||||||||||||
補足説明 |
なし |