Fast way to change fill colour of many objects
I am currently navigating the document model through all objects and manually adjusting the fill colour of desired objects.
For example, for each layer, I iterate through the GroupItems, CompoundPathItems, PathItems, in the GroupItems I navigate the GroupItems, CompoundPathItems, PathItems, etc.
In order to change all the colours of the objects, it ends up taking over a minute to accomplish. But in the Illustrator UI, I can select a very complicated group item and change it's colour very fast. In the SDK, GroupItem does not have a fill colour parameter, so I have to iterate through all sub-items to change the colour.
Is there a better way? This seems so slow.
...Matt