April 8, 2012
7:56 a.m.
On Apr 8, 2012, at 5:31 AM, Nelson Pingitore wrote:
I am attempting to add a Splash Screen to a Pharo project. I currently use the following to bring up the image:
(ImageReadWriter formFromFileNamed: 'C:\Users\npingito\Documents\Smalltalk\Splash Screen\splash.bmp') asMorph openInWorld
my question is, how can I close this image after a delay, such as after 10 seconds, and is there a better construct to use?
[Delay forSeconds: 5. image delete.] fork ?
Nelson