|
Andy, Blair, and everyone else at Object Arts, thanks for V4.0! It looks
great with plenty of new goodies to explore.
One small suggestion; grab the jpg from /Addictions.htm and modify the
method DolphinSplash>>splashNumber
| now |
now := Time now.
now hours <= 3 ifTrue: [ ^5 ]. "Addiction"
now hours < 5 ifTrue: [ ^1 ]. "Night"
now hours < 8 ifTrue: [ ^2 ]. "Morning"
now hours < 19 ifTrue: [ ^3 ]. "Day"
now hours < 22 ifTrue: [ ^4 ]. "Evening"
^1. "Night"
:)
Thanks Again!
Steve
|