Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
Is there a way to override the color of an assembly via a parameter list?
Thank you.
Solved! Go to Solution.
Hello,
Is there a way to override the color of an assembly via a parameter list?
Thank you.
Solved! Go to Solution.
Yes, the parts of an assembly.
If Colour = "Red" Then Component.Color("Part1:1") = "Red" Component.Color("Part2:1") = "Red" ElseIf Colour = "Blue" Component.Color("Part1:1") = "Blue" Component.Color("Part2:1") = "Blue" End If
This way you need to specify the component name.
If you want to change every part in the assembly, depending on how many there are, you may be better using a For loop.
Thank you, this worked!