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

3.0a 4.0 4.05 5.0 6.0 7.0
Windows
×





Macintosh
×





ポイント
fName = this.getNthFieldName(i);
fObj = this.getField(fName);
app.alert(fObj.type);
説  明
文書内全てのフィールドタイプを表示するにはgetNthFieldName()メソッドを使って指定番目のフィールド名を取得します。ここで得た名前をもとにしてgetFiled()メソッドを使いtypeプロパティの値を読み出します。

サンプル

total = this.numFields;
for (i=0; i<total; i++)
{
fName = this.getNthFieldName(i);
fObj = this.getField(fName);
app.alert(fObj.type);
}

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