|
I found the solution.... if the expression is
group1|Gear1.rotateY = group2|Gear2.rotateY*(.5)
and you want copy to many object without retyping the name of object every time.... just copy from the beginning the property…
rotateY = group2|Gear2.rotateY*(.5)
when you press enter, the system autocomplete the name of the object when you save the expression.
**************** Example *********
If Obj1 is rotting
And Obj2 (ex. if Obj2 rotting .5 times fast then Obj1)
you type a expression like that
Obj2.rotateY = Obj1.rotateY*(.5)
then if you have a Obj3 and you want copy the same expression you need to paste
rotateY = Obj1.rotateY*(.5) (Whit out the name of the object… in this case Obj2)
and when you save the expression, the system automatically insert the name of the object.. and your expression will see like that…
Obj3.rotateY = Obj1.rotateY*(.5)
**********************************
Very useful when have a lot of objects or the names of the objects are large or complex.
I hope this post being useful for someone.
|