S
Scott
This code:
ActiveWindow.Page.CreateSelection(visSelTypeByMaster, <sel mode>,
ActiveDocument.Masters("MyMaster"))
selects all shapes on the page that are based on a master called MyMaster.
However, it doesn't select those that are based on derivatives of this
master, e.g., MyMaster.3 or MyMaster.11.
Is there a way to select all shapes based on MyMaster and MyMaster.n when I
don't know all possible values of n? I know I could iterate through the
shapes on the page but it seems to me that the point of CreateSelection is to
avoid doing that...
Thanks
ActiveWindow.Page.CreateSelection(visSelTypeByMaster, <sel mode>,
ActiveDocument.Masters("MyMaster"))
selects all shapes on the page that are based on a master called MyMaster.
However, it doesn't select those that are based on derivatives of this
master, e.g., MyMaster.3 or MyMaster.11.
Is there a way to select all shapes based on MyMaster and MyMaster.n when I
don't know all possible values of n? I know I could iterate through the
shapes on the page but it seems to me that the point of CreateSelection is to
avoid doing that...
Thanks