How to make Interactive Colouring Book Game in PowerPoint

Did you know that we can create an Interactive Colouring Book Game in PowerPoint? Well, surprisingly, we can! Parents and Teachers can utilize this template to make fun little games and interactive activities to keep the students and kids engaged. Let’s make an Interactive Colouring Game in Microsoft PowerPoint using VBA.

Dim RGB As Variant

Sub ChooseColor(oSh As Shape)
RGB = oSh.Fill.ForeColor.RGB
ActivePresentation.SlideShowWindow.View.Slide.Shapes("brush").Fill.ForeColor.RGB = RGB
End Sub

Sub PaintColor(oSh As Shape)
oSh.Fill.ForeColor.RGB = RGB
End Sub