Hi,
I am trying to simulate something like a shear in a conveyor. Therefore I placed a station on the conveyor, to stop my flowitem, and cut it into two pieces by the use of flexscript. Generally first I set the new size of the object, then I create a copy of it and place it right behind the original flowitem.
But the two items on my conveyor now are not fully independent objects. If I create the copy by "Object new = insertcopy(item,item);" , my copied item moves together with the original item along the conveyor, but it doesn't interact with following stations.
So I tried it by "Object new = insertcopy(item,conveyor);". Now I have two independent items on the conveyor, but the new copy doesn't move on the conveyor. It seems, it's just graphically there, but it has no interaction with the conveyor, also no collisions with new objects coming along the conveyor. Maybe there is an easy solution for this?
Thanks