Hello,
I have tried to run a 3rd party ULP to select components (i.e. parts) on schematic by command. Since it did not work, I tried debugging it backwards, and got to the point to realize that the setgroup() function does not seem to work on my installation(s). I actually stripped it down to the following ULP and tried it on 6.6.0 and 6.5.0, but didn't do anything.
It should select and add all parts into a group, but there is no group created at all.
if(schematic)
{
sheet(S)
{
S.parts(part)
{
setgroup(part);
}
}
}
I attached the stripped ULP, and I call it from the schematic editor with "run select_all".
Is this only on my machine, or do others get the same result? Am I doing something wrong?
Thanks in advance,
Paul