2 part question:
1. Trying to output a series of specific bookmarks to a pdf. I can do it with all bookmarks
or 1 specific bookmark
, but how do I get multiple specific bookmarks? I can't get the syntax right.
Something like
(doesn't work, though)
1. Trying to output a series of specific bookmarks to a pdf. I can do it with all bookmarks
Code:
for bkmk in arcpy.mapping.ListBookmarks(mxd,"*",df):
Code:
for bkmk in arcpy.mapping.ListBookmarks(mxd,"Bookmark1",df):
Something like
Code:
for bkmk in arcpy.mapping.ListBookmarks(mxd,["Bookmark1","Bookmark3"],df):