Inserting Files (word, PDF, excel) as icon

Everything related to our flagship word processor.
Post Reply
Julian555
Posts: 2
Joined: 2010-11-08 15:47:19

Inserting Files (word, PDF, excel) as icon

Post by Julian555 »

One of the features I liked in MS Word was the ability to insert a word document or PDF file as an icon that could then be clicked and opened.

I've gone through Nisus Writer Pro and haven't seen this feature. Is it possible to do the same thing?

Thanks for any help or insight!
User avatar
martin
Official Nisus Person
Posts: 5230
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Re: Inserting Files (word, PDF, excel) as icon

Post by martin »

Hi Julian- I'm sorry, but Nisus Writer does not have that feature. You can however link to a file somewhere on your disk using a text hyperlink. These kind of hyperlinks start with "file://" instead of "http://". Rather than typing in a file path yourself, you might want to use a macro, like this one:

Code: Select all

$path = Choose File '', 'Link To'
If $path
   $link = "file://$path"
   $name = $path.lastFilePathComponentWithoutExtension
   Type Link $link, $name
End
It will ask you to choose a file to link to.
Julian555
Posts: 2
Joined: 2010-11-08 15:47:19

Re: Inserting Files (word, PDF, excel) as icon

Post by Julian555 »

thanks Martin,

Nisus is still a lovely program, I'm liking it a lot.
Post Reply