AppleScriptを以下のように記述すると特定のアプリケーションが起動中か確認することができます。
if application "アプリケーション名" is running
"running"
else
"not running"
end if
メモアプリが起動しているか検証する場合には以下のようになります。
if application "Notes" is running
"running"
else
"not running"
end if
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 1 year has passed since last update.
AppleScriptを以下のように記述すると特定のアプリケーションが起動中か確認することができます。
if application "アプリケーション名" is running
"running"
else
"not running"
end if
メモアプリが起動しているか検証する場合には以下のようになります。
if application "Notes" is running
"running"
else
"not running"
end if
Register as a new user and use Qiita more conveniently
Go to list of users who liked