tempfile.txtというテキストファイルに保存されているファイルのリストがあります。たとえば、tempfile.txtの内容は次のようになります。
/path/to/my/file1.txt
/path/to/my/file2.txt
/path/to/my/file3.txt
Applescriptを使用してFinderでこれらのテキストファイルのラベルの色を変更したいのですが、(ファイル名とパスを文字列としてではなく)実際のファイルオブジェクトを取得するのに問題があります。これが私がこれまでに持っているものです:
-- some work has already been done to set tempfile to tempfile.txt
set files_to_update to paragraphs of (read tempfile) -- this works fine
repeat with myfile in files_to_update
set selected_file to POSIX path of myfile -- this works fine
set label index of selected_file to 1 -- trying to set this file to orange fails with error "A property can't go after this identifier"
end repeat
何か助けはありますか?