![]() |
|
#1
|
|||
|
|||
|
I would like to create a link to a word template within a powerpoint presentation, to create a new document in Word, but trying to do so, it is the actual template which is opened and edited. |
|
#2
|
|||
|
|||
|
I don't think you can the link will always open the template.
You can do this by making the "LINK" run code (Insert > Action > Run Code The code would look like this Code:
Sub wordOpen() Dim oWdApp As Object On Error Resume Next Set oWdApp = GetObject(Class:="Word.Application") If oWdApp Is Nothing Then _ Set oWdApp = CreateObject(Class:="Word.Application") oWdApp.Visible = True 'change the path!! oWdApp.Documents.Add Template:="C:\Users\John\Desktop\whT.dotx" End Sub |
|
#3
|
|||
|
|||
|
Thanks, it works! Also found that hyperlinking pure text directly in Word functions, but as soon as theres a little more graphics involved, it seems that your sullution is the thing...
|
|
#4
|
|||
|
|||
|
Quote:
John got it right... |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How to create a MS Word Template with custom designs in the background?
|
pwall1115 | Word | 3 | 04-14-2013 08:45 PM |
| Create microsoft word template | expert4knowledge | Word | 5 | 05-11-2012 04:57 PM |
| Create Custom Word Template | emilyrogers | Word | 0 | 02-16-2011 05:46 AM |
| Why isn't my hyperlinked word text hyperlinked when I convert it to pdf? | Obisco | Word | 0 | 12-10-2010 01:58 PM |
| Can I separate a word Doc (docx) from the template used to create it (dotx)? | paulnevlud | Word | 2 | 12-14-2009 10:13 AM |