I've got a "menu" slide with all the custom shows assigned to buttons. I need to style the buttons as "visited" once clicked but I can't assign a link AND a macro to a button so I'm trying to get the macro to run the custom show.
Here;s what i have (the shape name is the same as the show name):
It doesnt work! please help
thanks
Here;s what i have (the shape name is the same as the show name):
Code:
Sub MenuButton(oShape As Shape)
showName = oShape.Name
ActivePresentation.SlideShowSettings.Run
SlideShowWindows(SlideShowWindows.Count).View.GotoNamedShow showName
ActiveWindow.SlideRange.Shapes(showName).TextRange.Font.Color.RGB = RGB(Red:=192, Green:=192, Blue:=192)
End Sub
It doesnt work! please help
thanks