Let's assume i have a hole , and a macro that i'ts painting this hole the color i want ( i allready made this ) , now i want to propagate the same color at all the matrix, and function linked to this hole.
Can this be done?
Hole.1
Matrix.1
Macro-color-holes.catscript ( i allready have this )
Read hole dimension.
Assign the hole a color related to the dimension.
Look for matrix (children) of this hole.
Assign the same color of the hole.
How can i implement this routine to this code?
Dim sel As Selection
Set sel = productDocument1.Selection
sel.Search "CATPrtSearch.Thread,all"
Set visPropertySet = sel.VisProperties
visPropertySet.SetRealColor 255,255,0,0
sel.Clear
Dim sel As Selection
Set sel = productDocument1.Selection
>> SELECT MATRIX OF THIS HOLE AND ASSIGN SAME COLOR.
selection.Clear
Thanks
Can this be done?
Hole.1
Matrix.1
Macro-color-holes.catscript ( i allready have this )
Read hole dimension.
Assign the hole a color related to the dimension.
Look for matrix (children) of this hole.
Assign the same color of the hole.
How can i implement this routine to this code?
Dim sel As Selection
Set sel = productDocument1.Selection
sel.Search "CATPrtSearch.Thread,all"
Set visPropertySet = sel.VisProperties
visPropertySet.SetRealColor 255,255,0,0
sel.Clear
Dim sel As Selection
Set sel = productDocument1.Selection
sel.Search "CATPrtSearch.Thread,all"
Set visPropertySet = sel.VisProperties
visPropertySet.SetRealColor 255,255,0,0>> SELECT MATRIX OF THIS HOLE AND ASSIGN SAME COLOR.
selection.Clear
Thanks