I basically know how to move an object in a module
Object oMove = object(DoorsID, mBasicCurrent);
Object oPrev = object(DestDoorsID, mBasicCurrent);
move(oMove, oPrev);
move(oMove, below oPrev);
But I can’t find how I can transfer it to the first position in the module. I did not find anything in the documentation, but somewhere I found a hint that there are three types of movement (after, bottom and top), but I did not find an example and did not get it to work.
Can someone show me how to move an object to the top of the module?
stema source
share