hi there,
I noticed this script and it works a charm for PDFs that are always the same page numbers.
var PDF = Watch.GetPDFEditObject();
PDF.Open(Watch.GetJobFileName(),false);
PDF.Pages(1).Orientation = 270;
PDF.Pages(2).Orientation = 270;
PDF.Pages(3).Orientation = 270;
PDF.Save(true);
PDF.Close();
What if you have 6 files (that will eventually be merged) where file 1 == portrait, file 2 == portrait, but file 3 and file 4 == landscape. File 5 and 6 are portrait again. I need to make the files that are landscape into portrait, then will merge together with other files.
Thanks,
Cecile