Chrome 2 Safari Skript

S

Semmi

Aktives Mitglied
Thread Starter
Dabei seit
09.02.2010
Beiträge
530
Reaktionspunkte
23
es gibt ja diverse Safari-to-Chrome Skripte. Ich hätte aber gerne ein Chrome-to-Safari. Leider bekomme ich es nicht hin. Kann mir jemand helfen?

Code:
property theURL : ""
tell application "Google Chrome"
	set theURL to URL of current tab of window 1
end tell

if appIsRunning("Safari") then
	tell application "Safari"
		if (count of (every window where visible is true)) is greater than 0 then
			-- running with a visible window, ready for new tab
		else
			-- running but no visible window, so create one
			make new window
		end if
	end tell
else
	tell application "Safari"
		-- chrome app not running, so start it
		do shell script "open -a \"Safari\""
	end tell
end if

-- now that we have made sure chrome is running and has a visible
-- window create a new tab in that window
-- and activate it to bring to the front
tell application "Safari"
	tell front window
		make new tab with properties {URL:theURL}
	end tell
	activate
end tell

on appIsRunning(appName)
	tell application "System Events" to (name of processes) contains appName
end appIsRunning
 
Zurück
Oben Unten