1

I have a Microsoft PowerPoint document and I have a slide which I display during a short break. I would like the slide to show the time when the slide was shown + a time interval. This is to show when the audience should be back again.

So simply a text container with (pseudo code):

text = time.now() + interval(5 minutes);
Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Chau
  • 5,540
  • 9
  • 65
  • 95

1 Answers1

1

I have tried this in a more powerpointy way, by making multiple slides that say, for example, "presentation begins again in 5 minutes", next slide "...4 mintues", next slide "...3 minutes" etc. Then put an auto timer on each slide to auto advance after 1 minute.

JS24
  • 13
  • 2
  • I was going for a simple static text displaying the time when the slide was shown + and interval. So it wouldn't count down, just show at what time the audience should be back. – Chau Feb 06 '19 at 11:45