今年もよろしくお願い致します.
さて,Apple script なるものを使って特定のweb siteにアクセス出来るスクリプトを書きました.ちなみに,意味はありません.
簡単な事なんでしょうが,初心者の僕にとっては・・・
いろんなサイト見て,やっと出来ました.
以下,作ったやつです.
property target_URL : "http://www.google.co.jp"
set accessURL to "http://www.google.co.jp"
set accessURL to "http://www.google.co.jp"
repeatdisplay dialog "Do you want to access " & accessURL & " ?" buttons {"access", "cancel"}
default button 2copy the result as list to {button_pressed}
if the button_pressed is "cancel" then exit repeat
if the button_pressed is "access" then exit repeat
end repeat
if the button_pressed is "access" then
delay 5 --second wait
open location target_URL
end if
すごく単純です.
まず,ダイアログ表示して,"access"を選べば,5秒後にgoogleのページへ飛びます.
"cancel"を押せば,ダイアログが消えて終わりです.
これにどれだけの時間を費やしたか・・・
でも,出来たから,よかったです.ほんと.
なんか,これで終わってしまいそうな予感がしますが,まあ良いや.
0 件のコメント:
コメントを投稿