Narration and linked sound files

R

rogge

When recording narration the files are named <PPT file name><SlideID>. I
want to use SlideNumber to EASILY indicate slide and sound file pairings.

What recommendations do you have to make the pairings between slides and
sound files more intuitive?

thank you for your help!
-rogge
 
J

John Wilson

As far as I know (maybe someone knows better) you cannot change the default
save name for linked narrations (except manually file by file of course)

It is possible though to use vba code to show (and hide) the Slide ID in
each slide would that help?
--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
R

rogge

I'll lookinto using VBA. I'll be distributing a template so i want it simple
for end users.

hmm... maybe number the slides in a text box that is hidden during slide
shows (probably have to place the text box off the viewable area)?

Thanks for your input, John; this will give me some more options.
have a good holiday
 
J

John Wilson

This might help:
Sub ID_me()
Dim osld As Slide
Dim otxt As Shape
For Each osld In ActivePresentation.Slides
Set otxt = osld.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, -25, 200,
20)
With otxt
..TextFrame.TextRange = "My SlideID is " & CStr(osld.SlideID)
'tag makes it easier to identify and delete if needed
..Tags.Add "Me", "ID"
End With
Next osld
End Sub

Sub zapper()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Tags("Me") = "ID" Then oshp.Delete
Next oshp
Next osld
End Sub
--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 

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

Top