Oberon Object Tiler -

: Provides a more streamlined and automated alternative to CorelDRAW's native "Step and Repeat" or "Print Preview" imposition tools. Availability and Installation : It is a VBA-based macro (

PROCEDURE SplitViewer*(V: Viewer; x, y: INTEGER); VAR newV: Viewer; splitX: INTEGER; BEGIN splitX := x; IF (splitX > V.frame.X) & (splitX < V.frame.X + V.frame.W) THEN NEW(newV); newV.frame.X := splitX; newV.frame.Y := V.frame.Y; newV.frame.W := V.frame.X + V.frame.W - splitX; newV.frame.H := V.frame.H; V.frame.W := splitX - V.frame.X; newV.obj := V.obj; (* same object, different view *) InsertViewer(V, newV); Restore(V); Restore(newV) END END SplitViewer; Oberon Object Tiler

In the Oberon environment, objects (such as text editors, viewers, and other graphical components) are created and manipulated directly on the screen. As the number of objects increases, arranging them in a useful and aesthetically pleasing manner can become cumbersome. This is where the Oberon Object Tiler comes into play. : Provides a more streamlined and automated alternative

: Ensure Visual Basic for Applications (VBA) is installed with your CorelDRAW suite (note that Home & Student versions often do not support macros). This is where the Oberon Object Tiler comes into play