OSX Mountain Lion で、LogMeIn アプリケーションと「ファイルを共有」するためのショートカットが存在しないため、作成しようとしました。Automator を開き、「watch me do」の下にアプリケーションを作成しました。[記録] をクリックしてメニュー バーに移動し、[LogMeIn] > [ファイルを共有...] をクリックして、そのダイアログ ボックスで [ファイルを共有] をクリックし、記録を停止しました。次に、コマンドを Automator にコピーし、AppleScript エディタに貼り付けました。実行速度を上げるためにいくつかの変更を加えたいと考えています。Automator の速度として 10x を選択しましたが、ショートカットを実行してから約 13 秒かかります。この AppleScript を変更してインスタントにする方法を知っている人がいたら、遠慮なく変更してください。
どんな助けでも大歓迎です。
ありがとう
-- Click the “<fill in title>” menu.
set timeoutSeconds to 2.0
set uiScript to "click menu bar item 1 of menu bar 1 of application process \"LogMeIn Menubar\""
my doWithTimeout(uiScript, timeoutSeconds)
-- Share a file...
set timeoutSeconds to 2.0
set uiScript to "click menu item \"Share a file...\" of menu 1 of menu bar item 1 of menu bar 1 of application process \"LogMeIn Menubar\""
my doWithTimeout(uiScript, timeoutSeconds)
-- Click the “Share a file...” button.
set timeoutSeconds to 2.0
set uiScript to "click UI Element \"Share a file...\" of group 1 of window \"LogMeIn\" of application process \"LogMeIn\""
my doWithTimeout(uiScript, timeoutSeconds)
on doWithTimeout(uiScript, timeoutSeconds)
set endDate to (current date) + timeoutSeconds
repeat
try
run script "tell application \"System Events\"
" & uiScript & "
end tell"
exit repeat
on error errorMessage
if ((current date) > endDate) then
error "Can not " & uiScript
end if
end try
end repeat
end doWithTimeout