I want to make a PowerPoint macro. This is a macro that selects with textbox slide number, left, top.
'for example
Sub test1()
ActivePresentation.Slides(1).Select
with Left:=-300, Top:=100
End With
Dim TBox1 TBox1 = ActiveWindow.Selection.TextRange.Text
MsgBox (TBox13) '----error
End Sub
'select text box
Here's some sample code that'll do what you want. Rather than make it specific to your question, I wrote something more general-purpose that you can use to find any shape at any position on any slide you like.