Hi All, I have small( I hope ) problem, and hoped that you may help me solve it.
I made a rule that add constraints to parts in assembly.
Name of the occurrence is declared as SharedVariable in other rule.
When try to use this SharedVariable in my constraint rule, I have an error that you can see below:
Below part of rule that gives me that error:
For i = 1 To 10
oName1 = SharedVariable("FromArray" & i)
oName2 = SharedVariable("FromArray" & i + 1)
Constraints.AddFlush("Flush2_" & i, oName1, "FrontFace", oName2, "FrontFace",
offset := 0.0, biasPoint1 := Nothing, biasPoint2 := Nothing)
Next
Many Thanks!