This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// MWCGPath.h | |
// | |
// Created by Martin Winter on 14.01.11. | |
// Copyright 2011 Martin Winter. All rights reserved. | |
// | |
// Provides an NSObject wrapper around CGPathRef. | |
// | |
#if TARGET_OS_IPHONE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Safari" | |
repeat with theSafariWindow in windows | |
tell application "Google Chrome" to set theChromeWindow to make new window | |
repeat with theSafariTab in theSafariWindow's tabs | |
set theURL to URL of theSafariTab | |
tell application "Google Chrome" | |
set theChromeTab to make new tab at end of tabs of theChromeWindow | |
set URL of theChromeTab to theURL | |
end tell | |
end repeat |