home *** CD-ROM | disk | FTP | other *** search
- /* $VER: GotoMasterPage.rexx 1.0 (02.9.94)
- Copyright 1994 Soft-Logik Publishing Corporation
- May not be distributed without Soft-Logik Publishing Corporation's express written permission */
-
- OPTIONS RESULTS
-
- ADDRESS 'PAGESTREAM'
-
- 'currentmasterpage'
- mpname=result
- 'getdimensions 'stem' masterpage "'mpname'"'
- if stem.sides='SINGLE' then mpname=mpname||':right'
- if stem.sides='DOUBLE' then do
- 'currentpage'
- pagenum=result
- if pagenum/2=trunc(pagenum/2) then mpname=mpname||':left'
- else mpname=mpname||':right'
- end
- 'display mpg "'mpname'"'
-