Narration and linked sound files

  • Thread starter Thread starter rogge
  • Start date Start date
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
 
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
 
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
 
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
 
Back
Top