Re: [Pharo-users] Flashing short duration images in a window

2016-11-29 Thread Denis Kudriashov
If you need fullscreen show: Form setBackgroundFromImageFileNamed:'path/(.jpg|.png)'.

Re: [Pharo-users] Flashing short duration images in a window

2016-11-28 Thread p...@highoctane.be
un...@lists.pharo.org] *On > Behalf Of *William L. Cleveland > *Sent:* Monday, November 28, 2016 9:43 PM > *To:* pharo-users@lists.pharo.org > *Subject:* [Pharo-users] Flashing short duration images in a window > > > > I want to write code to flash a color image of a perso

Re: [Pharo-users] Flashing short duration images in a window

2016-11-28 Thread Dimitris Chloupis
Flashing is basically animation. All you need is an ImageMorph and to add stepping using the step method. step is the method that does the animation loop (step = frame) stepTime you return how much time will be spend be spend per step this is my step method from my project ChronosManager which bas

Re: [Pharo-users] Flashing short duration images in a window

2016-11-28 Thread Henrik Nergaard
lto:pharo-users-boun...@lists.pharo.org] On Behalf Of William L. Cleveland Sent: Monday, November 28, 2016 9:43 PM To: pharo-users@lists.pharo.org Subject: [Pharo-users] Flashing short duration images in a window I want to write code to flash a color image of a person in a window for a short period of time. The d

[Pharo-users] Flashing short duration images in a window

2016-11-28 Thread William L. Cleveland
I want to write code to flash a color image of a person in a window for a short period of time. The duration of the flash is important, not the frequency of the flashes, which will be low and probably controlled by pressing a key. Ideally, the duration should be an integral number of frames, sta