Re: [Pharo-users] Fuel and Bloc: error on materializing

2015-11-22 Thread chicoary
I found that the materialized object did not have a reference to the Bloc space. With the line of code introduced below the error disappeared. | container materializedObject objectToSerlialize | container := BlMorph new withRectangleViewDo: [ :v | v extent: 200@200. v color: Color lightCyan ]. obj

[Pharo-users] Fuel and Bloc: error on materializing

2015-11-22 Thread chicoary
The code below works but it turns out the error "Message Not Understood: receiver of" noticeMouseOver "is nil" when the mouse passes over the morph. | container materializedObject objectToSerlialize | container := BlMorph new withRectangleViewDo: [ :v | v extent: 200@200. v color: Color lightCyan