Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-25 Thread darrinm
I am having trouble getting NBOpenGL to work. I started with the Pharo 3.0 image from (http://pharo.org/download) and registered/configured NBOpenGL from http://smalltalkhub.com/#!/~PharoExtras/NBOpenGL (ConfigurationOfNBOpenGL-RonieSalgado.18.mcz). The instructions there are a little confusing sin

[Pharo-users] How does one use MultiColumnListModel?

2014-05-25 Thread Sergi Reyner
Hi, I´ve been spending some time trying to figure out what to pass, and I can´t figure out what to pass to #items:. I´ve tried to pass strings, arrays of strings, arrays of arrays of strings, and the most I´ve got so far is Character(Object)>>doesNotUnderstand: #widthToDisplayInList: :S Some help

Re: [Pharo-users] How does one use MultiColumnListModel?

2014-05-25 Thread Johan Fabry
Hi Sergi, what I do is pass it whatever I want, but set the displayblock. This block then returns a n-element collection, one element for each column. For example, in a two column list I return a collection with 2 elements. Greetings, On May 25, 2014, at 8:24 PM, Sergi Reyner wrote: > Hi, >

Re: [Pharo-users] How does one use MultiColumnListModel?

2014-05-25 Thread Sergi Reyner
2014-05-26 1:35 GMT+01:00 Johan Fabry : > Hi Sergi, > > what I do is pass it whatever I want, but set the displayblock. This block > then returns a n-element collection, one element for each column. For > example, in a two column list I return a collection with 2 elements > Thanks!!! Thanks!!! Th