Quote:
Originally Posted by Kimberly
You can do lots of things with VBA. For example, hide a slide on Mondays:
Code:
Sub MyRules()
If DatePart("w", Date) = vbMonday Then
ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoTrue
Else
ActivePresentation.Slides(3).SlideShowTransition.Hidden = msoFalse
End If
End Sub
|
I will have to look into VBA. But the thing is that the presentations will be made by old people who really need a point and click gui. Would it be possible to build something like this with VBA?