AppleScriptを使用してFinderでフォルダを開こうとしています。以下は私のコードです。WorkSpace
フォルダをFinderで開きたいのですが、親フォルダが開き、フォルダ/Volumes/MyMacDrive/Mani
が強調表示されWorkSpace
ます。フォルダの内容が欲しいのWorkSpace
ですが、取得しているのはその親フォルダの内容だけです。私はここで何が欠けていますか..?
property the_path : "/Volumes/MyMacDrive/Mani/WorkSpace/"
set the_folder to (POSIX file the_path) as alias
tell application "Finder"
activate
if window 1 exists then
set target of window 1 to the_folder
else
reveal the_folder
end if
end tell