|
|
| |
| 15) Click in the Insert Tab. |
| |
|
| Illustration 5: Links command group. |
| |
| 16) Configure the Click options. |
| |
|
| Illustration 6: Action settings. |
| |
| 17) Select the slide to jump on click. |
| |
| 18) Click in the Play Sound options to play a sound when clicking in the image. |
| |
| 19) Click the Highlight click to give an inset effect to the image. |
| |
| 20) Press the OK button to finish. |
| |
| 21) You could configure the Run program option to give some interactivity to the presentation (for example in a kiosk show). |
| |
| 22) Click the Browse button to search the exe file to execute. |
| |
| Visual Basic for applications |
| |
| 23) If you want to access developer controls, write code click the Microsoft Office Button, and then click PowerPoint Options. |
| |
| 24) In the PowerPoint Options dialog box, click Popular. |
| |
| 25) Under Top options for working with PowerPoint, select the Show Developer tab in the Ribbon check box, and then click OK. |
| |
| 26) To open the macro's editor, click in the Macro button. |
| |
|
| Illustration 7: Macro editor. |
| |
| 27) Select a Macro name and press the Edit button. |
| |
|
| Illustration 8: Macro panel. |
| |
| 28) Write a code, as the example shown below: |
| |
| Private Sub cmdbutton_Click() |
| SlideShowWindows(Index:=1).View.GotoSlide 18 |
| End Sub |
| 29) The sample code says, jump the presentation to the slide 18. Look at the PowerPoint Help for assistance in writing code. |
| |
|