Please can anybody show me how to use vba to make the cursor select a
specific content control in a document that has many CCs?
When you create the document (or, better, its template), open each
content control's Properties dialog and enter a unique tag value.
Unlike the title, which appears when the CC is selected, the tags
aren't visible to users but a macro can read them.
The macro can do something like this:
Sub x()
Dim cc As ContentControl
For Each cc In ActiveDocument.ContentControls
If cc.Tag = "t3" Then
cc.Range.Select
Exit For
End If
Next
End Sub
This will select the CC whose tag value is t3. Of course, you can use
any strings you like for the tags.