Re: [Newbies] Migrating to new image....

2007-04-22 Thread Edgar J. De Cleene
El 4/21/07 8:48 PM, Blake [EMAIL PROTECTED] escribió: Hey, all: Is there a how-to on moving code between images? I like Damien's dev-images so I like to update when he does, but is there an easy way to move all my stuff between an old image and a new one? And what about desktop? If I

Re: [Newbies] Migrating to new image....

2007-04-22 Thread Ralph Johnson
Do not be seduced by the image! The idea of an image is wonderful, and is one of the core ideas of Smalltalk. It is great to restart the system and have all your debugging sessions where you left them. However, the image is fragile, and it can be hard to share work the you have done to the

[Newbies] Re: Efficiently writing to a file

2007-04-22 Thread Zulq Alam
Hi Ian, You can get significant improvements by, writing to the file in one go, avoiding any intermediate strings, and taking a good guess at the size of your buffer. | bs fs bt ft | bs := WriteStream on: (String new: 6). bt := Time millisecondsToRun: [1 to: 1 do:

Re: [Newbies] Fading a PNG

2007-04-22 Thread Brad Fuller
Steven Greenberg wrote: I have a PNG image that I'd like to display fading out. I tried the BitBlt method suggested by Team RAR to fade the image, but I can't make it work. The image loads properly from a file and displays fine as an ImageMorph. I have been able to use a

Re: [Newbies] Fading a PNG

2007-04-22 Thread Steven Greenberg
m := Morph new openInWorld. m visible: false. m visible: true. On 4/22/07, Brad Fuller [EMAIL PROTECTED] wrote: Steven Greenberg wrote: I have a PNG image that I'd like to display fading out. I tried the BitBlt method suggested by Team RAR to fade the image, but I can't make it work.

Re: [Newbies] Fading a PNG

2007-04-22 Thread Brad Fuller
Steven Greenberg wrote: m := Morph new openInWorld. m visible: false. m visible: true. well.. that's easy! I would like to know how to fade in and out. I read the BitBlt way, but I haven't tried it yet. On 4/22/07, *Brad Fuller* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote:

Re: [Newbies] Fading a PNG

2007-04-22 Thread Bert Freudenberg
On Apr 23, 2007, at 0:44 , Steven Greenberg wrote: I have a PNG image that I'd like to display fading out. I tried the BitBlt method suggested by Team RAR to fade the image, but I can't make it work. The image loads properly from a file and displays fine as an ImageMorph. I have been