余分な行を削除するスクリプトですが、複数あるとダメですね。
- –<P></P>のみの行を削除する
- set paraNum to 0
- try
- tell application “Jedit X“
- activate
- tell front document
- repeat with paraNum from 1 to (count paragraph)
- –delay 1
- paraNum = paraNum + 1
- if paragraph paraNum contains “<p></p>“ then
- delete paragraph paraNum
- end if
- end repeat
- end tell
- end tell
- display dialog “正解です“
- on error
- –エラーになるのなら、エラーがでたら処理の終了と考えてやってみる。
- tell application “AppleScript Editor“
- activate
- display dialog “処理が終了しました“
- end tell
- end try
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー