Pharo by visualization: Adding a title to a Roassal map visualization
Hi, First sorry for the crossposting I don't know where list is better to post this question. I think that I have found my way to learning Pharo/Smalltalk and to keep it relevant in my day to day life and is through visualization. Details are here: http://mutabit.com/offray/static/blog/output/posts/pharo-by-visualization.ht... So, as an small test I did a small visualization that you can find here: http://mutabit.com/deltas/repos.fossil/offray-uvikuo/doc/tip/static/blog/gal... I would like to add a title to the map image. ¿How can I made this? Cheers, Offray
2014-06-24 19:57 GMT+02:00 Offray Vladimir Luna Cárdenas <offray@riseup.net> :
Hi,
First sorry for the crossposting I don't know where list is better to post this question.
I think that I have found my way to learning Pharo/Smalltalk and to keep it relevant in my day to day life and is through visualization. Details are here:
http://mutabit.com/offray/static/blog/output/posts/ pharo-by-visualization.html
So, as an small test I did a small visualization that you can find here:
http://mutabit.com/deltas/repos.fossil/offray-uvikuo/ doc/tip/static/blog/galleries/objetos/periodismo-datos- ejemplo-crudo-resaca2.png
I would like to add a title to the map image. ¿How can I made this?
Cheers,
Offray
A title for the TRMorph window? .... mapa open setLabel:'Map'
Thanks Clément and Nicolai. setLabel: 'My Label' did the trick. Cheers, Offray On 24/06/14 13:42, Nicolai Hess wrote:
2014-06-24 19:57 GMT+02:00 Offray Vladimir Luna Cárdenas <offray@riseup.net <mailto:offray@riseup.net>>:
Hi,
First sorry for the crossposting I don't know where list is better to post this question.
I think that I have found my way to learning Pharo/Smalltalk and to keep it relevant in my day to day life and is through visualization. Details are here:
http://mutabit.com/offray/__static/blog/output/posts/__pharo-by-visualizatio... <http://mutabit.com/offray/static/blog/output/posts/pharo-by-visualization.ht...>
So, as an small test I did a small visualization that you can find here:
http://mutabit.com/deltas/__repos.fossil/offray-uvikuo/__doc/tip/static/blog... <http://mutabit.com/deltas/repos.fossil/offray-uvikuo/doc/tip/static/blog/gal...>
I would like to add a title to the map image. ¿How can I made this?
Cheers,
Offray
A title for the TRMorph window? .... mapa open setLabel:'Map'
Hum I use the old version of roassal not the new one but I think you can replace mapa := RTMetricMap new by: mapa := RTMetricMap titled: 'myTitle'. Does it work ? Else perhaps mapa := RTMetricMap new title: 'myTitle' ?? 2014-06-24 19:57 GMT+02:00 Offray Vladimir Luna Cárdenas <offray@riseup.net> :
Hi,
First sorry for the crossposting I don't know where list is better to post this question.
I think that I have found my way to learning Pharo/Smalltalk and to keep it relevant in my day to day life and is through visualization. Details are here:
http://mutabit.com/offray/static/blog/output/posts/ pharo-by-visualization.html
So, as an small test I did a small visualization that you can find here:
http://mutabit.com/deltas/repos.fossil/offray-uvikuo/ doc/tip/static/blog/galleries/objetos/periodismo-datos- ejemplo-crudo-resaca2.png
I would like to add a title to the map image. ¿How can I made this?
Cheers,
Offray
participants (3)
-
Clément Bera -
Nicolai Hess -
Offray Vladimir Luna Cárdenas