全てのしおりの色を交互に指定する
対応バージョン

3.0a 4.0 4.05 5.0 6.0 7.0
Windows
×
×
×



Macintosh
×
×
×



ポイント
if (i & 1) bObj[i].color = ["RGB",1,0,0];
else bObj[i].color = ["RGB",0,0,1];
説  明
全てのしおりの色を交互に指定するには、しおりの配列内の位置が奇数か偶数か調べ、それに応じてcolorプロパティにカラー配列を設定します。

サンプル

bObj = bookmarkRoot.children;
for (i=0; i<bObj.length; i++)
{
if (i & 1) bObj[i].color = ["RGB",1,0,0];
else bObj[i].color = ["RGB",0,0,1];
}

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