サブルーチンにしてください。例えば、
tell application "Finder"
set oldName to "001abc.txt"
set newName to my replace(oldName)
end tell
on replace(oldName)
set oldDel to text item delimiters
set text item delimiters to "abc"
set myList to text items of oldName
set text item delimiters to "def"
set newName to myList as string
set text item delimiters to oldDel
return newName
end replace
といった具合。
あるいは、Finder で直接操作したいなら、text item delimiters を AppleScript's text item delimiters に置き換えてください。
tell application "Finder"
set oldName to "001abc.txt"
set oldDel to AppleScript's text item delimiters
set AppleScript's text item delimiters to "abc"
set myList to text items of oldName
set AppleScript's text item delimiters to "def"
set newName to myList as string
set AppleScript's text item delimiters to oldDel
end tell
という具合。
お礼
再度ありがとうございます。 AppleScript'sをつけると実行できました。希望の名前変更scriptが 実行できるようになりました。 ありがとうございました。