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
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
--- 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 ---
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
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
--- 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
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
--- 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