Show all visualizations on a page

Description: Show all visualizations on a specific page.
Assumptions: An optional 'myPage' page type script parameter.

#Pick one of the following Page reference options:
#myPage = Application.Document.Pages[0]            #Page index method
#myPage = Application.Document.ActivePageReference #Active page method
#myPage as a page type script parameter            #Script parameter method

#Loop through all visualizations on a page
for myVis in myPage.Visuals:
  print "Vis Name: " + myVis.Title
  print "Vis ID: " + myVis.Id.ToString()