Raise your hand if you had to teach virtually at some point this year! Timers for PowerPoint slides saved my sanity during our ZOOM meetings, let me tell you! Here is how I used timers for PowerPoint slides to manage students as they logged in.
I am looking to create a timer within a powerpoint slide that will count up the days/hours/minutes/seconds of the company having no injuries on site. It will need to run while the rest of the powerpoint continues on. It's running on office 2010 if that helps.
How's about something like this: -stopwatch.com/download-stopwatch/ Opens a new window - you can download it, run it up as and SWF and import it as an embedded object. Or even use a free addin I found one time that will allow you to show a like view of a webpage within powerpoint. Office 2010 might even do it out of the box these days.
Tracking time in Microsoft Powerpoint is easy. Simply download the Timing appand install it. Timing will then run in the background, automatically tracking in the background howmuch time you spend preparing presentations in Powerpoint. No start/stop timers required!
Windows: Office 2010 and above: File Options Customise Ribbon \u2611 Developer\n
\nNow under the Developer Tab, choose Visual Basic.
\nMacOS: Office 2011 or 2016: Tools Macro Visual Basic Editor\n\n\nThis will open the Visual Basic Editor to input our code. If your Microsoft Office version isn't mentioned above, click here. Note that VBA works only on Windows and MacOS.","image":""},"@type":"HowToStep","url":"https:\/\/pptvba.com\/powerpoint-insert-countdown-timer-vba-tutorial\/","name":" Step 3: Paste VBA Macro Code","text":"Copy and paste the following VBA Macro Code into the Visual Basic Editor: ","image":""], "totalTime":"PT5M"} Sub countdown()Dim time As Datetime = Now()Dim count As Integercount = 30 'assuming 30 secondstime = DateAdd("s", count, time)Do Until time < Now()DoEventsActivePresentation.SlideShowWindow.View.Slide.Shapes("countdown").TextFrame.TextRange = Format((time - Now()), "hh:mm:ss")Loop End SubWe need to run this VBA Macro when we click on this shape in Slide Show Mode. To do this, select the shape, go to Insert Actions Run Macro countdown
While there are PowerPoint timers available, this is different in that there is an editable text box that allows teachers to type in what stage of the task students should be on at any point during the assignment time.