だから私はこれまでアップルスクリプトを使ったことがなく、コーディングの仕方も知りません。
オンラインで見つけたこのスクリプトを使用しようとしていますが、「構文エラー: 式が必要ですが、コマンド名が見つかりました」というメッセージが表示されます。
任意の助けをいただければ幸いです
コード:
on idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "BTGuard”
if current configuration of myConnection is not connected then
try
tell application "transmission"
quit
end tell
connect myConnection
–say "Retrying connection"
end try
else
tell application "transmission"
run
end tell
end if
end tell
return 1
end tell
end idle