document.write('<link rel="stylesheet" href="http://gist.github.com/stylesheets/gist/embed.css"/>')





document.write('<div id=\"gist-33786\" class=\"gist\">\n  \n  \n    \n            \n\n      <div class=\"gist-file\">\n        <div class=\"gist-data gist-syntax\">\n          \n          \n          \n            <div class=\"gist-highlight\"><pre><div class=\"line\" id=\"LC1\">-- EvernoteCopyLink.applescript\n<\/div><div class=\"line\" id=\"LC2\">-- Copy title and URL in the front most window of Safari to Evernote with link\n<\/div><div class=\"line\" id=\"LC3\">-- Author: Takanori Ishikawa\n<\/div><div class=\"line\" id=\"LC4\">&nbsp;<\/div><div class=\"line\" id=\"LC5\">on copyLinkToEvernote(theTitle, theURL)\n<\/div><div class=\"line\" id=\"LC6\">	tell application &quot;System Events&quot;\n<\/div><div class=\"line\" id=\"LC7\">		-- copy &amp; paste\n<\/div><div class=\"line\" id=\"LC8\">		set the clipboard to theTitle as text\n<\/div><div class=\"line\" id=\"LC9\">		keystroke &quot;v&quot; using command down\n<\/div><div class=\"line\" id=\"LC10\">&nbsp;<\/div><div class=\"line\" id=\"LC11\">		tell process &quot;Evernote&quot;\n<\/div><div class=\"line\" id=\"LC12\">			-- Select pasted text\n<\/div><div class=\"line\" id=\"LC13\">			-- Note 1: \'ASCII character 28\' means \'move left\'.\n<\/div><div class=\"line\" id=\"LC14\">			-- Note 2: &quot;shift + option&quot; selection might be more efficient,\n<\/div><div class=\"line\" id=\"LC15\">			--         but it does not work correctly with Japanese text.\n<\/div><div class=\"line\" id=\"LC16\">			(*\n<\/div><div class=\"line\" id=\"LC17\">			repeat (length of words of theTitle) times\n<\/div><div class=\"line\" id=\"LC18\">			  keystroke (ASCII character 28) using {shift down, option down}\n<\/div><div class=\"line\" id=\"LC19\">			end repeat\n<\/div><div class=\"line\" id=\"LC20\">			*)\n<\/div><div class=\"line\" id=\"LC21\">			repeat length of theTitle times\n<\/div><div class=\"line\" id=\"LC22\">				keystroke (ASCII character 28) using shift down\n<\/div><div class=\"line\" id=\"LC23\">			end repeat\n<\/div><div class=\"line\" id=\"LC24\">&nbsp;<\/div><div class=\"line\" id=\"LC25\">			-- Link, Add...\n<\/div><div class=\"line\" id=\"LC26\">			keystroke &quot;k&quot; using command down\n<\/div><div class=\"line\" id=\"LC27\">			delay 0.1\n<\/div><div class=\"line\" id=\"LC28\">			set the clipboard to theURL as text\n<\/div><div class=\"line\" id=\"LC29\">			keystroke &quot;v&quot; using command down\n<\/div><div class=\"line\" id=\"LC30\">&nbsp;<\/div><div class=\"line\" id=\"LC31\">			-- click &quot;OK&quot;\n<\/div><div class=\"line\" id=\"LC32\">			delay 0.1\n<\/div><div class=\"line\" id=\"LC33\">			repeat with w in windows\n<\/div><div class=\"line\" id=\"LC34\">				if exists sheet 1 of w then\n<\/div><div class=\"line\" id=\"LC35\">					click button &quot;OK&quot; of sheet 1 of w\n<\/div><div class=\"line\" id=\"LC36\">				end if\n<\/div><div class=\"line\" id=\"LC37\">			end repeat\n<\/div><div class=\"line\" id=\"LC38\">&nbsp;<\/div><div class=\"line\" id=\"LC39\">		end tell\n<\/div><div class=\"line\" id=\"LC40\">	end tell\n<\/div><div class=\"line\" id=\"LC41\">end copyLinkToEvernote\n<\/div><div class=\"line\" id=\"LC42\">&nbsp;<\/div><div class=\"line\" id=\"LC43\">tell application &quot;System Events&quot;\n<\/div><div class=\"line\" id=\"LC44\">	if not (exists application process &quot;Evernote&quot;) or not (exists application process &quot;Safari&quot;) then\n<\/div><div class=\"line\" id=\"LC45\">		display alert &quot;Evernote and Safari Required&quot; message &quot;You have to launch Evernote and Safari before executing script&quot;\n<\/div><div class=\"line\" id=\"LC46\">	end if\n<\/div><div class=\"line\" id=\"LC47\">end tell\n<\/div><div class=\"line\" id=\"LC48\">&nbsp;<\/div><div class=\"line\" id=\"LC49\">tell first document of application &quot;Safari&quot;\n<\/div><div class=\"line\" id=\"LC50\">	set pageTitle to name\n<\/div><div class=\"line\" id=\"LC51\">	set pageURL to URL\n<\/div><div class=\"line\" id=\"LC52\">end tell\n<\/div><div class=\"line\" id=\"LC53\">&nbsp;<\/div><div class=\"line\" id=\"LC54\">tell application &quot;Evernote&quot; to activate\n<\/div><div class=\"line\" id=\"LC55\">set theClipboard to the clipboard\n<\/div><div class=\"line\" id=\"LC56\">copyLinkToEvernote(pageTitle, pageURL)\n<\/div><div class=\"line\" id=\"LC57\">set the clipboard to theClipboard\n<\/div><div class=\"line\" id=\"LC58\">&nbsp;<\/div><div class=\"line\" id=\"LC59\">&nbsp;<\/div><\/pre><\/div>\n        \n        <\/div>\n\n        <div class=\"gist-meta\">\n          <a href=\"http://gist.github.com/raw/33786/13464327188782a5e3c317f1867e475da736e257/copyLinkToEvernote.applescript\" style=\"float:right;\">view raw<\/a>\n          <a href=\"http://gist.github.com/33786#file_copy_link_to_evernote.applescript\" style=\"float:right;margin-right:10px;color:#666\">copyLinkToEvernote.applescript<\/a>\n          <a href=\"http://gist.github.com/33786\">This Gist<\/a> brought to you by <a href=\"http://github.com\">GitHub<\/a>.\n        <\/div>\n      <\/div>\n    \n  \n<\/div>\n')
