I wonna share a script with you if you need it: Using a screen resolution of (1280x1024) for each monitor in multi monitor display mode (2 monitors) the following script helps to arrange child windows of a MDI application fitting to one monitor (adaption to your needs may be required):
script 1 "ResizeChildToLEFT.txt" <code> local ha = win.getfocus IF(ha=="")DO win.setpreviousfocus ha = win.getfocus ENDIF ha.getparent.size(1280,900) ha.getparent.move(0,0) </code> script 2 "ResizeChildToRIGHT.txt" <code> local ha = win.getfocus IF(ha=="")DO win.setpreviousfocus ha = win.getfocus ENDIF ha.getparent.size(1280,900) ha.getparent.move(1275,0) </code> greetings, Mark
