AFP Overlays

2015-06-05 Thread Tim Brown
Is there an example somewhere for a Formdef  2 overlays where  output to page1 
uses overlay1  and all subsequent output uses overlay2.


Thanks,

Tim Brown



--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: AFP Overlays

2015-06-08 Thread Howard Turetzky
Note that the FORMDEF does not switch automatically between overlays. The print 
file causes the switch from COPYGROUP abbb1 to abb2 by changing COPYGROUPs 
(also called Medium Maps) using the Invoke Medium Map (IMM) structured field or 
PAGEDEF conditional processing.

FORMDEF  abbb   
 replace yes ;  
   SETUNITS 1 in 1 in;  
 COPYGROUP abbb1
   duplex normal
   offset 0.0 0.0   
   ;
   OVERLAY abbb1;   
   OVERLAY abbb2;   
SUBGROUP front  
 overlay abbb1; 
SUBGROUP back   
 overlay abbb2; 
 COPYGROUP abbb2
   duplex normal
   offset 0.0 0.0   
   ;
   OVERLAY abbb2;   
SUBGROUP overlay abbb2;

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN