desactivate bodies and feature with rule
desactivate bodies and feature with rule
(OP)
hi everybody,
do you know how to create a rule to desactivate all bodies and features contained in a part without selected all features one by one?
thanks
do you know how to create a rule to desactivate all bodies and features contained in a part without selected all features one by one?
thanks





RE: desactivate bodies and feature with rule
RE: desactivate bodies and feature with rule
Same action described by Loki you will have with a CATScript like bellow:
CODE --> CATScript
Regards
Fernando
https://picasaweb.google.com/102257836106335725208
https://picasaweb.google.com/103462806772634246699...
RE: desactivate bodies and feature with rule
Perhaps you want the features locked as deactivated?
Win XP64
21SP7/22SP5, 3DVIA Composer 2013X, ST R20
Dell T7400 16GB Ram
Quadro FX 4800 - 1.5GB
RE: desactivate bodies and feature with rule
I have read all suggested respond but what i want to do is to desactivated a body and all features contains on it.
I have a skeleton of my system on a part with all body including boolean operations and i have create some parameters to desactivate some bodies to modified to final design of the system.
to avoid troubles with bodies I need to desactivated bodies whose are not usefull.
I dont't know if a rules can be launch a vb script as suggested by fredo.
RE: desactivate bodies and feature with rule
You could set it up like this using parameters with rules.
The rule or formula will activate/deactivate the bodies.
Win XP64
21SP7/22SP5, 3DVIA Composer 2013X, ST R20
Dell T7400 16GB Ram
Quadro FX 4800 - 1.5GB
RE: desactivate bodies and feature with rule
b:body
b.Activity = False
Where is the problem?
indocti discant et ament meminisse periti
RE: desactivate bodies and feature with rule
for example
if boolean.1 == false
(
d.Ativity = false
}
else
(
d.Ativity = true
}
RE: desactivate bodies and feature with rule
indocti discant et ament meminisse periti
RE: desactivate bodies and feature with rule