var numChkWord, numWords, numPageCnt, numWordCnt;
for (var numPageCnt = 0; numPageCnt < this.numPages; numPageCnt++) {
numWords = this.getPageNumWords(numPageCnt);
for (numWordCnt = 0; numWordCnt < numWords; numWordCnt++) {
numChkWord = spell.checkWord(this.getPageNthWord(numPageCnt, numWordCnt))
if (numChkWord != null) {
annot = this.addAnnot
({
page: numPageCnt,
name: "スペルチェック",
subject: "スペルチェック",
type: "Highlight",
// これでもOK Squiggly波線 Underline下線
// type: "Squiggly",
// type: "Underline",
strokeColor:[ "CMYK", 0,1,0,0 ],
// 固定色指定する場合は↓
// strokeColor: color.red,
// RGB色指定する場合は
// strokeColor:[ "RGB", 1,0,0 ],
// 色を変更したい場合はここで変更
// Black color.black [ "G", 0 ]
// White color.white [ "G", 1 ]
// Red color.red [ "RGB", 1,0,0 ]
// Green color.green [ "RGB", 0,1,0 ]
// Blue color.blue [ "RGB", 0, 0, 1 ]
// Cyan color.cyan [ "CMYK", 1,0,0,0 ]
// Magenta color.magenta [ "CMYK", 0,1,0,0 ]
// Yellow color.yellow [ "CMYK", 0,0,1,0 ]
// Dark Gray color.dkGray [ "G", 0.25 ]
// Gray color.gray [ "G", 0.5 ]
// Light Gray color.ltGray [ "G", 0.75 ]
opacity: 1,
// 半透明にする事もできます 0.0 から 1までの間で設定
quads: this.getPageNthWordQuads(numPageCnt, numWordCnt),
author: "Acrrobatのスペルチェック",
//ここは自由に変更できます
//作成者を自分にしたい場合は↓のようにすればOk
// author: identity.name,
contents: "スペルの確認をしてください" + numChkWord.toString()
});
}
}
}
オリジナル
var ckWord, numWords, i, j;
for (var i = 0; i < this.numPages; i++) {
numWords = this.getPageNumWords(i);
for (j = 0; j < numWords; j++) {
ckWord = spell.checkWord(this.getPageNthWord(i, j))
if (ckWord != null) {
annot = this.addAnnot
({
page: i,
type: "Squiggly",
quads: this.getPageNthWordQuads(i, j),
author: "A. C. Acrobat",
contents: ckWord.toString()
});
}
}
}
var numChkWord, numWords, numPageCnt, numWordCnt;
for (var numPageCnt = 0; numPageCnt < this.numPages; numPageCnt++) {
numWords = this.getPageNumWords(numPageCnt);
for (numWordCnt = 0; numWordCnt < numWords; numWordCnt++) {
numChkWord = spell.checkWord(this.getPageNthWord(numPageCnt, numWordCnt))
if (numChkWord != null) {
annot = this.addAnnot
({
page: numPageCnt,
name: "スペルチェック",
subject: "スペルチェック",
type: "Highlight",
// これでもOK Squiggly波線 Underline下線
// type: "Squiggly",
// type: "Underline",
strokeColor:[ "CMYK", 0,1,0,0 ],
// 固定色指定する場合は↓
// strokeColor: color.red,
// RGB色指定する場合は
// strokeColor:[ "RGB", 1,0,0 ],
// 色を変更したい場合はここで変更
// Black color.black [ "G", 0 ]
// White color.white [ "G", 1 ]
// Red color.red [ "RGB", 1,0,0 ]
// Green color.green [ "RGB", 0,1,0 ]
// Blue color.blue [ "RGB", 0, 0, 1 ]
// Cyan color.cyan [ "CMYK", 1,0,0,0 ]
// Magenta color.magenta [ "CMYK", 0,1,0,0 ]
// Yellow color.yellow [ "CMYK", 0,0,1,0 ]
// Dark Gray color.dkGray [ "G", 0.25 ]
// Gray color.gray [ "G", 0.5 ]
// Light Gray color.ltGray [ "G", 0.75 ]
opacity: 1,
// 半透明にする事もできます 0.0 から 1までの間で設定
quads: this.getPageNthWordQuads(numPageCnt, numWordCnt),
author: "Acrrobatのスペルチェック",
//ここは自由に変更できます
//作成者を自分にしたい場合は↓のようにすればOk
// author: identity.name,
contents: "スペルの確認後、この注釈を削除してください" + numChkWord.toString()
});
}
}
}