PDA

View Full Version : Powerpoint: Creating a checkbox that can be edited in slide mode



taytaydivvy
05-28-2015, 08:23 AM
Hello,

So, I need a simple way to indicate if a slide has been updated or not. My idea was to include a small checkbox on each slide for the user to click, populating the checkbox, when they've updated the slide. The issue is that the checkbox in developer/controls is only usable in presentation mode. I need this to be editable in slide mode, where the users will be doing their editing of the slides themselves. Is there a simple way to do this and I'm just missing it? I'm open to alternative ideas for indicators as well. I'm just trying to make this as simple as possible.

Thank you so much for any suggestions. I appreciate it,
Taylor

John Wilson
05-28-2015, 09:14 AM
There's no simple way to get a checkbox "clickable" in edit mode.

Probably the correct solution would be an AddIn that created a new ribbon button and toggled any checkbox on the current slide. Fairly easy for a competent programmer to create. I have attached a demo of how this would look. Feel free to save as an AddIn and use if you know how. There's a new button in REVIEW.

Paul_Hossler
05-28-2015, 12:41 PM
How about a macro to add a tag "Edited" = "EDITED"?

It could also add a textbox to the slide that says "Been Edited"


A second macro to reset the tag and remove the text box?

taytaydivvy
05-28-2015, 12:58 PM
There's no simple way to get a checkbox "clickable" in edit mode.

Probably the correct solution would be an AddIn that created a new ribbon button and toggled any checkbox on the current slide. Fairly easy for a competent programmer to create. I have attached a demo of how this would look. Feel free to save as an AddIn and use if you know how. There's a new button in REVIEW.

Thank you, John! I am going to take some time and learn more about this technique, as I'm not a programmer. Very cool trick.

taytaydivvy
05-28-2015, 12:59 PM
How about a macro to add a tag "Edited" = "EDITED"?

It could also add a textbox to the slide that says "Been Edited"


A second macro to reset the tag and remove the text box?

Thanks for the idea, Paul! That's something I could execute.

Tracy7558
11-13-2015, 11:33 AM
Could anyone tell me how to add a clickable checkbox to a slide in PowerPoint 2011 for Mac? I've never used VBA before so I'm not sure where to even begin with this (but I was able to find and view the Developer tab). My goal wit this is to create a clickable checklist such that when an empty check box is clicked, a check mark appears inside the box.

Thank you in advance for any help you can provide!

John Wilson
11-13-2015, 01:30 PM
This is one of those things that is much harder on a Mac. (Pretty well impossible AFAIK without fairly complex code but I'm not a Maccy) You could probably MAKE it on a PC and it would run on a Mac if you use trigger animations.

l&c
01-19-2016, 10:36 PM
This is one of those things that is much harder on a Mac. (Pretty well impossible AFAIK without fairly complex code but I'm not a Maccy) You could probably MAKE it on a PC and it would run on a Mac if you use trigger animations.

Definitely. Nigh impossible on mac.

Rena
12-26-2017, 09:23 AM
There's no simple way to get a checkbox "clickable" in edit mode. There's a new button in REVIEW.

Hi,
I hope you can help with a follow up to your solution. I have a similar problem with 20+ people editing a slide template in various ways. To simplify things, I need them to choose among check-boxes, and submit their edited slides for complication.
I was hoping the add-on on this post would do the trick, but it only allows Check-all or Uncheck-all which doesn't solve the issue.

Hope you/anyone can help as the VBA is locked to play around with.

Thanks in advance!

John Wilson
12-26-2017, 09:44 AM
Hi,
I hope you can help with a follow up to your solution. I have a similar problem with 20+ people editing a slide template in various ways. To simplify things, I need them to choose among check-boxes, and submit their edited slides for complication.
I was hoping the add-on on this post would do the trick, but it only allows Check-all or Uncheck-all which doesn't solve the issue.

Hope you/anyone can help as the VBA is locked to play around with.

Thanks in advance!
The code I posted should only check / uncheck the checkbox on the current slide in view. If you want to choose whick check on a slide is affected you would need much more complex code. We can code this (probably) but it wouldn't be a free job.

John Wilson
12-27-2017, 12:43 PM
You could maybe try this though! It MUST be saved as a PPAM AddIn and loaded and you should use CTRL Click to toggle checkboxes.

Unless you know what you are doing I wouldn't mess with the code.

John Wilson
12-31-2017, 05:42 AM
Just so you know the above should (sort of) work but it is not the best solution for regular use. You really read a ribbon menu that reads the checkbox names on the selected slide and can toggle the value when the corresponding menu item is chosen. This is certainly possible but not a trivial project.

Might look like :
https://www.screencast.com/t/RHIkMia4T7Q