Creating PS for selected pages in quark file

Hi,

Is this possible in applescript to create PS file of selected pages in a quark file.

That is I want to create PS of pages 2, 7, 10, 12 of a quark file that contains 25 pages.

Thanks,
Gopal

Yes, what I end up doing is to tell each page that I need a single-page postscript and then


repeat with i from 1 to pgCT
			
			tell page i

print PostScript file thePath & theName & i & ".ps"

end tell --page i
end repeat


Now I’m unsure of the trick to get non-sequential pages into a single .PS file. Don’t think it’s as easy as tell page 7 & 10.

hth, sam