Skip to content

Instantly share code, notes, and snippets.

@flagranterror
Created February 24, 2012 15:53
Show Gist options
  • Save flagranterror/1901707 to your computer and use it in GitHub Desktop.
Save flagranterror/1901707 to your computer and use it in GitHub Desktop.
Open Safari URL in IE in Parallels
property theUrl : ""
tell application "Safari"
set theUrl to URL of current tab of window 1
end tell
set validUrl to text ((offset of ":" in theUrl) + 1) thru -1 of theUrl
tell application "Internet Explorer"
open validUrl
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment