全てのしおりを展開、折り畳む |
||||||||||||||||||||||
対応バージョン |
|
|||||||||||||||||||||
ポイント |
bookmarkRoot.children[i].open = true; | |||||||||||||||||||||
説 明 |
全てのしおりを展開するにはしおりの総数を取得し、それぞれのしおりのopenプロパティにtrueを入れます。折り畳むにはfalseを入れます。 |
|||||||||||||||||||||
サンプル |
for (i=0; i<bookmarkRoot.children.length; i++) { bookmarkRoot.children[i].open = true; } |
|||||||||||||||||||||
|
■サンプルスクリプトを実行する >> Acrobat で動作確認 |
|||||||||||||||||||||
補足説明 |
なし |