AppleScript
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(AppleScript);
*目次 [#n4e303df]
#contents
*参考情報 [#f760a623]
-[[Google ChromeをAppleScriptで操作する - DiaryException:...
*Tips [#td8f4e18]
**ターミナルから実行する [#y31909ba]
-以下のコマンドで実行可能。[[AppleScript 2.1 Help: ターミ...
osascript scriptname
*サンプル [#cb195c78]
** 最前面で選択されているテキストを取得する [#v9d20807]
#pre{{
set frontmostApp to path to frontmost application
tell application "Finder"
set appName to displayed name of frontmostApp
end tell
activate application appName
tell application "System Events"
tell application process appName
keystroke "c" using command down
end tell
end tell
tell application appName
set theText to the clipboard as string
end tell
}}
*トラブルシューティング [#of0f0f79]
**奇妙なEnd of Lineシンタックスエラーが発生する [#o5470284]
-以下のChromeのタイトルを取得する単純なAppleScriptが動か...
tell application "Google Chrome" to tell active tab of w...
-原因はParallelsのChromeがMac側で共有されているせいだった...
-Chromeのプロパティを取得できるかどうか確かめてみたところ...
#pre{{
tell application "Google Chrome"
get properties of window 1
end tell
}}
**Applescript “Expected end of line but found propertyの...
-[[Applescript "Expected end of line but found property."...
**AeroFSFinderExtension.osaがどうのこうのといわれる [#r57...
-不要だから単に削除すればいいらしい。[[osx - Osascript al...
終了行:
&tag(AppleScript);
*目次 [#n4e303df]
#contents
*参考情報 [#f760a623]
-[[Google ChromeをAppleScriptで操作する - DiaryException:...
*Tips [#td8f4e18]
**ターミナルから実行する [#y31909ba]
-以下のコマンドで実行可能。[[AppleScript 2.1 Help: ターミ...
osascript scriptname
*サンプル [#cb195c78]
** 最前面で選択されているテキストを取得する [#v9d20807]
#pre{{
set frontmostApp to path to frontmost application
tell application "Finder"
set appName to displayed name of frontmostApp
end tell
activate application appName
tell application "System Events"
tell application process appName
keystroke "c" using command down
end tell
end tell
tell application appName
set theText to the clipboard as string
end tell
}}
*トラブルシューティング [#of0f0f79]
**奇妙なEnd of Lineシンタックスエラーが発生する [#o5470284]
-以下のChromeのタイトルを取得する単純なAppleScriptが動か...
tell application "Google Chrome" to tell active tab of w...
-原因はParallelsのChromeがMac側で共有されているせいだった...
-Chromeのプロパティを取得できるかどうか確かめてみたところ...
#pre{{
tell application "Google Chrome"
get properties of window 1
end tell
}}
**Applescript “Expected end of line but found propertyの...
-[[Applescript "Expected end of line but found property."...
**AeroFSFinderExtension.osaがどうのこうのといわれる [#r57...
-不要だから単に削除すればいいらしい。[[osx - Osascript al...
ページ名: