chauncey-garrett
7/12/2014 - 9:49 PM

Present the bookmark creation window in Spillo and populate it with the content from the frontmost tab in Safari

Present the bookmark creation window in Spillo and populate it with the content from the frontmost tab in Safari

tell application "Safari"
	set current_tab to current tab of front window
	
	set tab_title to name of current_tab
	set tab_address to URL of current_tab
	
	tell application "Spillo"
		show create bookmark panel with properties {url:tab_address, title:tab_title}
	end tell
end tell