I am trying to add function to buttons on a powerpoint presentation that my
boss made. She placed a button on a page that is to take one to a 2006 graph
and another to a manual. How do I make these pop up when clicked?
Open the presentation and right-click the action button in the Edit
View and select Action Settings. Then select the action you want.
There are three choices that will work: Hyperlink, Run or Macro (once
one is defined). The first two will likely invoke security dialogs
when the button is clicked, so I would opt for the third, with a macro
defined for each button, something like this ...
Sub LaunchManual()
sCmd = "winword ""C:\Full\Pathspec\to\Manual.doc"""
Shell sCmd, vbNormalFocus
End Sub
Modify the sCmd variable to match the command sequence needed to
launch the chart in it's associated application (what you would find
in a shortcut's Target line or would need to type into the Start/Run
dialog).
If you use either the hyperlink or Run choice, it just needs the full
pathspec to the file being accessed.
Tom Lavedas
===========
http://members.cox.net/tglbatch/wsh/