Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
How to export a BookMorph as Postscript
Last updated at 5:57 pm UTC on 26 August 2016
With the Squeak 5.1 release Postscript export works again.

To export a BookMorph evaluate

(FileStream newFileNamed: '../../myBookMorph.ps' ) nextPutAll: 
((Project current world submorphs detect:  [:m | m isKindOf: BookMorph]) asPostscript)
; close


The quality is good enough to serve as a draft.
It might be necessary to give book pages a translucent color.