趣味のためのMacに関するサイト > AppleScript > ソースコード > ブラウザ(Safari)からタイトルとURLを取得する
ソースコード

ブラウザ(Safari)からタイトルとURLを取得する

こちらから転用させていただきました。ありがとうございます。

  1. —————————————
  2. — Title+URI+Text.scpt
  3. — Version 1.3
  4. — 2006 Feb 1st
  5. — Written by NAKAJIMA Hiroki
  6. —————————————
  7. — Initialize —
  8. set thePrevClipboard to the clipboard
  9. set theText to
  10. set the clipboard to
  11. try
  12. — Get data from Safari —
  13. tell application Safari
  14. set theURL to URL of document 1 as Unicode text
  15. set theTitle to name of document 1 as Unicode text
  16. set theText to do JavaScript unescape(escape(getSelection())); in document 1
  17. end tell
  18. — Set the data to the clipboard
  19. if (theText is ) then
  20. set the clipboard to ((theTitle & return & theURL & return) as Unicode text)
  21. else
  22. set the clipboard to ((theTitle & return & theURL & return & return & theText & return) as Unicode text)
  23. end if
  24. on error errStr
  25. set the clipboard to thePrevClipboard
  26. beep
  27. log errStr
  28. end try

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

ページトップに戻る↑                           ページ一番下へ↓

Mac

About 1q3

ツールとしてのMacについてのメリットデメリットなどの事について書いています。

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です