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