September 22, 200322 yr This is my problem : I have to printout a document several times but with the content of one field changed for every copy. Like saying 'Original', 'Copy', 'Archive', etc. The field contents are stored in a value list. What I have to do now is change by hand and then print every copy. Tedious job .... Can anyone help with this ? Thnnks in advance
September 22, 200322 yr Hi -- you could use a global field and change it in your print script. Heck, you could even just change the actual field in your print script #Original First Set Field [your field, "Original"] # Perfrom your first print routine #Now the Copy Set Field [your field, "Copy"] #Perform the second print #Hey, guess what. Now the Archive Set Field [your field, "Archive"] #Perform the third print # #You get the idea right? HTH
Create an account or sign in to comment