El jue, 21-01-2010 a las 01:43 -0600, Miguel Enrique Cobá Martinez escribió: > I have uploade the Metacello configuration for RFB (a.k.a. Remote Frame > Buffer a.k.a. VNC) > > To load it in a 10506 PharoCore image: > > Gofer it > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfRFB'; > load. > (Smalltalk at: #ConfigurationOfRFB) project latestVersion load. > > Enjoy.
The correct invocation in a clean PharoCore 10506 image is: Gofer it squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfRFB'; load. ((Smalltalk at: #ConfigurationOfRFB) project perform: #latestVersion) load. because the latestVersion message doesn't exist in a clean image. Cheers -- Miguel Cobá http://miguel.leugim.com.mx _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
