AppleScript:讓Skype有暫停鍵(快速打隨身碼) - MAC

By Ina
at 2015-10-13T00:38
at 2015-10-13T00:38
Table of Contents
眾所週知,skype沒有暫停鍵可儲存,所以無法儲存分機號碼。
於是我用最下方這個applescript來打中華電信隨身碼(需要暫停鍵)。
其中1111111222222是隨身碼帳密,
而??????????是目的號碼,逗號,就是暫停幾秒。
首先開automator,選service,
上方「service receives selected」選no input(in「any application」),
左上方尋找applescript,開啟,把下方這個applescript貼上去。
存檔。
以後便可在任何程式下拉選單Services裡看到你存的檔,
點擊執行後就可以看到對話框跳出,輸入目的號碼,就能打電話了。
on run {input, parameters}
display dialog "destination number" default answer ""
set destination_number to text returned of result
set phone_number to "0800-080-991"
set dtmf to "1111111222222,,,," & destination_number & "#"
tell application "Skype"
set active_call to send command "CALL " & phone_number script name ""
set skype_call_id to word 2 of active_call
delay 10
set bridge to "ALTER CALL " & skype_call_id & " DTMF "
repeat with tone in the characters of dtmf
if tone contains "," then
delay 2
else
send command bridge & " " & tone script name "s2"
delay 0.2
end if
end repeat
end tell
end run
--
於是我用最下方這個applescript來打中華電信隨身碼(需要暫停鍵)。
其中1111111222222是隨身碼帳密,
而??????????是目的號碼,逗號,就是暫停幾秒。
首先開automator,選service,
上方「service receives selected」選no input(in「any application」),
左上方尋找applescript,開啟,把下方這個applescript貼上去。
存檔。
以後便可在任何程式下拉選單Services裡看到你存的檔,
點擊執行後就可以看到對話框跳出,輸入目的號碼,就能打電話了。
on run {input, parameters}
display dialog "destination number" default answer ""
set destination_number to text returned of result
set phone_number to "0800-080-991"
set dtmf to "1111111222222,,,," & destination_number & "#"
tell application "Skype"
set active_call to send command "CALL " & phone_number script name ""
set skype_call_id to word 2 of active_call
delay 10
set bridge to "ALTER CALL " & skype_call_id & " DTMF "
repeat with tone in the characters of dtmf
if tone contains "," then
delay 2
else
send command bridge & " " & tone script name "s2"
delay 0.2
end if
end repeat
end tell
end run
--
Tags:
MAC
All Comments

By Steve
at 2015-10-15T07:19
at 2015-10-15T07:19
Related Posts
預覽圖片異常

By Quintina
at 2015-10-13T00:06
at 2015-10-13T00:06
MBPR 2015 出貨時間有沒有影響

By Ina
at 2015-10-12T23:05
at 2015-10-12T23:05
預覽圖片

By Lucy
at 2015-10-12T22:51
at 2015-10-12T22:51
更新el capitan後mac app store的問題

By Caroline
at 2015-10-12T22:39
at 2015-10-12T22:39
OS X EICAPTIAN安裝後外接硬碟的問題

By Ingrid
at 2015-10-12T22:17
at 2015-10-12T22:17