Re: [Newbies] LedMorph - step problem

2010-03-06 Thread Jerome Peace
Hi Frank, I haven't tried the example yet. But I know from my own work that when you don't want steps #wantsSteps should return false. Otherwise each time you pick your morph up and drop it the system restarts stepping. so wantsSteps (ck the spelling) ^ time isNil and stopStepping super st

[Newbies] pretty print

2010-03-06 Thread sergio_101
i am using the pharo based seaside one click 3.0a image, and notably missing is 'pretty print' did i just misplace it? thanks! -- peace, sergio photographer, journalist, visionary http://www.coffee-black.com http://www.painlessfrugality.com http://www.twitter.com/sergio_101 http://www.fa

Re: [Newbies] editing an instance variable in an OrderedCollection

2010-03-06 Thread sergio_101
> BTW, it is better to use full words for your method and variable names > -- they are much easier to guess. > yes.. i first used description, but i saw that it was overriding another method, so i thought i might play it safe.. > I don't know about the context where you want to use this, but may

[Newbies] LedMorph - step problem

2010-03-06 Thread FrankBz
Hi, I'm trying to write a LedMorph that shows the actual time. It should have also two buttons, 'quit' which closes the frame and 'stop' which should stop the clock. Unfortunately the stop button does not work and I can't figure out where's the problem. Even by trying to send the stopStepping mess

Re: [Newbies] editing an instance variable in an OrderedCollection

2010-03-06 Thread Matthias Berth
You just need to use parentheses, like so: (Album repository at: 7) desc: 'this is a good album' BTW, it is better to use full words for your method and variable names -- they are much easier to guess. I don't know about the context where you want to use this, but maybe it is a good idea to sepa

[Newbies] editing an instance variable in an OrderedCollection

2010-03-06 Thread sergio_101
if i have an ordered collection of say albums... and the albums have a 'desc' instance variable.. and i decide i want to change 'desc' from 'this is a bad album' to 'this is a good album' on the 7th element in the list, how would i phrase that? i am kicking around: Album repository at: 7 desc: