Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have to make a that change form what ever backgound you have now, to the all white Presentation backgound. but if you run it again it need to turn it back to what every backgrond you have last time.
So the user of the code can change if setup to what ever background that he/she want and then if they need to change to white for a picture then can run it ... and when they are done they just run if again and be back to what every they have before
today I use this code
If (ThisApplication.ColorSchemes.BackgroundType = 52737) Then
ThisApplication.ColorSchemes.Item("Winter Day").Activate
ThisApplication.ColorSchemes.BackgroundType = BackgroundTypeEnum.kGradientBackgroundType
Else
ThisApplication.ColorSchemes.Item("Presentation").Activate
ThisApplication.ColorSchemes.BackgroundType = 52737
End If
Else
, but that lock all user to have the same and can't change it... I want it more flexsibel 🙂
Solved! Go to Solution.