PowerPoint allows you to add sounds to your presentations. Most sounds that occur in a PowerPoint presentation happen during slide transitions. When converting a PowerPoint presentation into an accessible HTML presentation, it is recommended that you do not include the transition sounds. While these sounds may add dynamics to your presentation, they often do not add anything to the slide content or the presentation objectives. Also, it is often difficult to obtain these transition sounds since they are not external files but embedded into your presentation.
However, if you have a sound file in your PowerPoint presentation that is critical to the content conveyed by a slide or the presentation objectives, it is important to add this into your HTML presentation.
Either way, before you can reference the sound file in your HTML, you must first locate this sound file so that you can add a hyperlink reference to it in your HTML slide. When you use a sound file in your PowerPoint presentation, there are two options where it may be stored:
When you have a sound file, Slide 11 of the sample PowerPoint Human Computer
Interaction
slide has a sound of breaking glass when the text is displayed.like this
breaking glass (and the "applause" transition sound on slide 12)
This page, will take the last slide, slide 12, and add it to the end of the BODY section of the HTML presentation. You will add the slide's content and a hyperlink reference to the audio file.
To convert a slide with sound into HTML:
From the sample is the original PowerPoint slide 12 (see Image 42 ).
Note: It consists of two text boxes (which do not show up in the outline view) and an audio clip that has been inserted into the presentation (the icon in the lower right).
<!-- Slide 12 -->
<img src="Slide12.jpg" alt="Slide 12">
<H1>Questions?</H1>
<!-- Slide 12 -->
<img src="Slide12.jpg" alt="Slide 12">
<H1>Questions?</H1>
<p>
OK - have a good weekend. I'll see you next week!
</p>
<a href="closing_remarks.wav">
Closing remarks audio file (9 seconds)
</a>
You have added the paragraph and also the hyperlink referring to the "closing_remarks.wav" file. This is the file that the original PowerPoint slide referred to, so this is the file that you will insert into our HTML presentation.
Notice that the audio file is referenced via the hyperlink. If you select this hyperlink, the audio material will play.
The next page will discuss how to convert a slide with animation.