I am trying to move the text box with the title from the center to the top of the slide deck. I am not able to find the right parameters for my script. Here are some lines that relate to it:
#setting slide type "Title and Content"
title_only_layout = pptx.slide_layouts[1]
#Adding content into the title box
pptx.slides.add_slide(title_only_layout)
pptx.slides[idx].shapes.title.text = "I am a title!"
These commands add the title box in the center of the deck. How do I adjust this script?