Page 1 of 1

open a HTML document from inside Nisus

Posted: 2010-06-25 05:50:42
by js
I know how to open an URL from inside Nisus. But how does open a HTML document on my hard disk? Or has this to be done via an Appel script?

Re: open a HTML document from inside Nisus

Posted: 2010-06-25 06:28:07
by Kino
If you want to open it not in NWP but in the default app for html (you are not clear about this), something like this will do the job:

Code: Select all

Open URL 'file:///Users/you/Documents/testfile.html'

Re: open a HTML document from inside Nisus

Posted: 2010-06-25 07:04:28
by js
Thank you. Yes, this is what I wanted: to have Nisus open my HTML file on disk in Safari.

In fact I had tried what you do. But I see now that the problem came from empty spaces in the file name. Spaces appear in the file name of the URL as "%20". But I don't know how to outquote these.

Re: open a HTML document from inside Nisus

Posted: 2010-06-25 08:06:11
by Kino
Just replace “%20” in the file path with “ ” (space).