Little more help, please — Quark 6


tell application "QuarkXPress"
			open thisFile use doc prefs yes remap fonts no do auto picture import no without reflow
			save document 1 in (thisFilePath) version vers 60
			close document 1 saving no
		end tell

Still getting annoying splash screen “Use doc prefs\Use system prefs” with some files.

Should not AppleScript “use doc prefs” take care of that? Is there another/better way I can open a document automatically using the doc prefs?

Not done much at all with quark yet but you could try this:

tell application "QuarkXPress"
	activate
	set open document preference to keep document settings
	open thisFile use doc prefs yes remap fonts no do auto picture import no without reflow
	save document 1 in (thisFilePath) version vers 60
	close document 1 saving no
end tell