I'm new to VBA with PowerPoint. Long-time user of VBA in Excel.

I am a college professor creating PowerPoint lesson plans and tools for students.

I am creating a powerpoint presentation where slide 1 has a bulleted list of vocabulary terms for the chapter.

Since I have numerous courses I teach, and 10-12 chapters in the textbook used for each course, I want to automate the next part using VBA:

I want to loop through all the bullets on a given slide (the "home" slide) and create a set of additional slides, each one having its title set to the text of that bullet.

Additionally, I want to create hyperlinks on the "home" slide that link from each bullet on the home slide to its corresponding definition slide.

So, I need to:

Loop through all bullets
Capture text of bullet
Create New Slide
Insert bullet text into slide
Create link to new slide
Paste that link to the current bullet on home slide

Thanks in advance for any assistance.