Viewer and "cooldn't process linked file" ?

  • Thread starter Thread starter Geoff Cox
  • Start date Start date
G

Geoff Cox

Hello,

I am using PowerPoint 2003 and have come across the "cooldn't process
linked file" error message when "Packaging for CD".

In some cases it is simply that a sound file is not there or a
hyperlink to an image is still there ...

but

some times the message refers to a Word doc - from which the ppt file
was created using cut and paste I think.

How do I break the link to the original doc?

Thanks

Geoff
 
Geoff,

Did you paste or go to Paste Link? Anyway, try Edit| Links.

--

Regards,

Glen Millar
Microsoft PPT MVP

Tutorials and PowerPoint animations at
www.pptworkbench.com

glen at pptworkbench dot com

Please tell us your PowerPoint / Windows version,
whether you are using vba, whether
your cows are in the corn paddock, or
anything else relevant.
 
Geoff,

Did you paste or go to Paste Link? Anyway, try Edit| Links.

Glen,

The links option is greyed out. The copy/paste was done by a friend
who emails me the ppt slides.

Anything I can do in the absence of the actual Word files?

Cheers

Geoff
 
The links option is greyed out. The copy/paste was done by a friend
who emails me the ppt slides.

Anything I can do in the absence of the actual Word files?

Select the Word content and ungroup it; then while it's still selected,
re-group. That'll break the link.
 
Select the Word content and ungroup it; then while it's still selected,
re-group. That'll break the link.

Steve,

Ah! There lies the rub. I do not know what is taken from Word docs and
the author cannot remember!

I have been using the following code from your web site to find the
hyperlinks - and this has been great for most of the time but on a few
occasions I have not been able to find the links. Would it be possible
to add to the code so that the offending link would be selected?

Cheers

Geoff

Sub ShowMeTheHyperlinks()
' Lists the slide number, shape name and address
' of each hyperlink

Dim oSl As Slide
Dim oHl As Hyperlink

For Each oSl In ActivePresentation.Slides
For Each oHl In oSl.Hyperlinks
If oHl.Type = msoHyperlinkShape Then
MsgBox "HYPERLINK IN SHAPE" _
& vbCrLf _
& "Slide: " & vbTab & oSl.SlideIndex _
& vbCrLf _
& "Shape: " & oHl.Parent.Parent.Name _
& vbCrLf _
& "Address:" & vbTab & oHl.Address _
& vbCrLf _
& "SubAddress:" & vbTab & oHl.SubAddress
Else
' it's text
MsgBox "HYPERLINK IN TEXT" _
& vbCrLf _
& "Slide: " & vbTab & oSl.SlideIndex _
& vbCrLf _
& "Shape: " & oHl.Parent.Parent.Parent.Parent.Name
_
& vbCrLf _
& "Address:" & vbTab & oHl.Address _
& vbCrLf _
& "SubAddress:" & vbTab & oHl.SubAddress
End If
Next ' hyperlink
Next ' Slide

End Sub
 
Steve,

Ah! There lies the rub. I do not know what is taken from Word docs and
the author cannot remember!

I have been using the following code from your web site to find the
hyperlinks - and this has been great for most of the time but on a few
occasions I have not been able to find the links. Would it be possible
to add to the code so that the offending link would be selected?

Have you tried using a report from our FixLinks addin?
http://fixlinks.pptools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top