MACSCRPT Archives

February 2014

MACSCRPT@LISTSERV.DARTMOUTH.EDU

Options: Use Monospaced Font
Show Text Part by Default
Condense Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Mime-Version:
1.0 (Mac OS X Mail 7.2 \(1874\))
Content-Type:
text/plain; charset=us-ascii
Date:
Wed, 26 Feb 2014 13:49:08 -0600
Reply-To:
Macintosh Scripting Systems <[log in to unmask]>
Subject:
From:
Christopher Stone <[log in to unmask]>
Message-ID:
In-Reply-To:
<a05210614cf33e93909b6@[10.0.0.3]>
Content-Transfer-Encoding:
quoted-printable
Sender:
Macintosh Scripting Systems <[log in to unmask]>
Parts/Attachments:
text/plain (35 lines)
On Feb 26, 2014, at 13:06, Walter Ian Kaye <[log in to unmask]> wrote:
> Hey folks, I'm writing a script for Web browsers, but since I'm on an older system I cannot run newer browsers. I've assembled a long list, and have managed to tackle all but the following four, which appear to not have any dictionary:
______________________________________________________________________

Hey Walter,

Firstly - you should tell us what system.  :)

I'd look at two methods.

-------------------------------------------------------------------------------------------
-- From the shell:
-------------------------------------------------------------------------------------------
open -a opera /Users/chris/Desktop/Bookmarks.html
open -a opera ~/Desktop/Bookmarks.html

open -a opera "/Users/chris/Desktop/Bookmarks Two.html"
open -a opera ~/"Desktop/Bookmarks Two.html"
-------------------------------------------------------------------------------------------


-------------------------------------------------------------------------------------------
-- Using Vanilla Applescript:
-------------------------------------------------------------------------------------------
set _file to alias ((path to desktop as text) & "Bookmarks.html")

tell application "Finder"
	open _file using application file id "OPRA"
end tell
-------------------------------------------------------------------------------------------

--
Best Regards,
Chris

ATOM RSS1 RSS2