文書内全てのフィールド名を表示する
対応バージョン

3.0a 4.0 4.05 5.0 6.0
Windows
×




Macintosh
×




ポイント
fName = this.getNthFieldName(i);
説  明
文書内全てのフィールド名を表示するにはgetNthFieldName()メソッドを使って指定番目のフィールド名を取得します。0が一番最初のフィールドになります。

サンプル

total = this.numFields;
for (i=0; i<total; i++)
{
fName = this.getNthFieldName(i);
app.alert(i+"番目の名前:"+fName);
}

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

04.10.14