Get Preview Window Path

FWIW a Yosemite Javascript variant

Path of front Preview document.zip (4.6 KB)

(function () {
	var	ws = Application("Preview").windows(),
		ds = ws.length ? ws[0].documents : [];
	return (d = ds.length ? ds[0] : null) ? d.path() : "";
})()