Thanks in advance
Bradley

I'm doing a thesis of 300 pages and this missing feature is the only reason I'm using Word!feat wrote:I also requested this today: I am tired of printing to pdf just to view my work from a different vantage point
I don't know if you know, but you can choose Print > Preview instead of generating a PDF file.feat wrote:I also requested this today: I am tired of printing to pdf just to view my work from a different vantage point
You could also use this macro:ptram wrote:I don't know if you know, but you can choose Print > Preview instead of generating a PDF file.feat wrote:I also requested this today: I am tired of printing to pdf just to view my work from a different vantage point
Code: Select all
$path = File.temporaryPathWithName('preview.pdf')
$isSaved = Save As PDF $path
If $isSaved
$url = "file://$path"
Open URL $url
Sleep 5
File.deletePath($path)
Else
Prompt 'Could not save PDF.'
End
ah, but as far as I know, this does indeed generate a pdf in /private/tmp/: and that's exactly what I call printing to pdf…choose Print > Preview instead of generating a PDF file