You can save the image every 60 seconds (or any other frequency) to avoid loss changes to the image with the following script:
[ [ true ] whileTrue: [
(Delay forSeconds: 60) wait.
Smalltalk snapshot: true andQuit: false
] ] forkAt: Processor userInterruptPriority named: 'Image Saver '.You can use the Process Browser under the World menu to terminate or pause the process.
I just wanted to say how much I appreciate these scripts of the day. They are hugely useful in building my understanding of Pharo
ResponderEliminar