Re: [Pharo-users] Roassal : Playing with the contrast

2018-02-21 Thread abdelghani ALIDRA via Pharo-users
mean the colors? Currently, there is no way to automatically assign colors to a visualization, although you can use a color palette (look at the class RTPalette). Cheers, Alexandre > On Feb 20, 2018, at 7:01 AM, abdelghani ALIDRA via Pharo-users > wrote: > > > From: ab

Re: [Pharo-users] Roassal : Playing with the contrast

2018-02-21 Thread abdelghani ALIDRA via Pharo-users
del > > > MCSmalltalkhubRepository > owner: 'StephaneDucasse' > project: 'Colors' > user: '' > password: '' > > On Tue, Feb 20, 2018 at 11:01 AM, abdelghani ALIDRA via Pharo-users > wrote: >> >> >> -- Forwarded message

[Pharo-users] Roassal : Playing with the contrast

2018-02-20 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, I am wondering if there is a way to play with the contrast of Roassal visualisations. If so, please tell me how :) Thank you in advanceAbdelghani --- End Message ---

Re: [Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-27 Thread abdelghani ALIDRA via Pharo-users
Thanks for reporting Abdelghani.Now it would be doubly useful if you could isolate which build introduced the problem.PharoLauncher can be used to help bisect working/non-working images. cheers -ben On 27 November 2017 at 04:08, abdelghani ALIDRA via Pharo-users wrote: -- Forwarde

Re: [Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-27 Thread abdelghani ALIDRA via Pharo-users
rs -ben On 27 November 2017 at 04:08, abdelghani ALIDRA via Pharo-users wrote: -- Forwarded message -- From: abdelghani ALIDRA To: "pharo-users@lists.pharo.org" Cc:  Bcc:  Date: Sun, 26 Nov 2017 20:08:29 + (UTC) Subject: Removing instance variables d

[Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-26 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, In a fresh pharo 6 image, I add a class with an instance variable x and implement accessors. Then I write a test method for the accessors of x MyClassTest>>testReadWriteX     self assert (MyClass new x: 0) x equals: 0 I run the test and obviously it is green BUT I re

Re: [Pharo-users] Dynamically changing code in a safe way

2017-11-04 Thread abdelghani ALIDRA via Pharo-users
k executing. Imagine if I were to hand you a loaf of bread and tell you to feed it to the dog. If I were then to hand you another loaf of bread, the dog would continue eating the first loaf. We never told the dog to do anything else. On Mon, Oct 23, 2017 at 1:53 PM, abdelg

[Pharo-users] Dynamically changing code in a safe way

2017-10-23 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, If I create a class HotSwapping with the instance variable currentBLoc (and the corresponding accessors) and the following methods : HotSwapping>>initialize currentBloc := [ 1 to:50 do: [:index |Transcript show: index. 100 milliSeconds asDelay wait]. Transcript