Loading went fine.

I opened an 'Animated Morphic' project and wanted to add a class as
shown in the video

https://github.com/hpi-swa/vivide/blob/master/howto/howto-createclass.gif

However the result I got was different, see attached screen shot.

Is there something missing?



On 7/14/15, marcel.taeumel <[email protected]> wrote:
> Metacello can be loaded into Squeak 4.6 like this:
> https://github.com/dalehenrich/metacello-work
>
> "Get the Metacello configuration (for Squeak users)"
> Installer gemsource
>     project: 'metacello';
>     addPackage: 'ConfigurationOfMetacello';
>     install.
>
> "Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic
> version"
> ((Smalltalk at: #ConfigurationOfMetacello) project
>   version: #'previewBootstrap') load.
>
> "Load the Preview version of Metacello from GitHub"
> (Smalltalk at: #Metacello) new
>   configuration: 'MetacelloPreview';
>   version: #stable;
>   repository: 'github://dalehenrich/metacello-work:configuration';
>   load.
> "Now load latest version of Metacello"
> Metacello new
>   baseline: 'Metacello';
>   repository: 'github://dalehenrich/metacello-work:master/repository';
>   get.
> Metacello new
>   baseline: 'Metacello';
>   repository: 'github://dalehenrich/metacello-work:master/repository';
>   onConflict: [:ex | ex allow];
>   load.
>
> Just do-it one code snippet after another in a workspace. Then:
>
> Metacello new
>   baseline: 'Vivide';
>   repository: 'github://hpi-swa/vivide/repository';
>   load.
>
> For more examples, load the package VivideScripts:
> https://github.com/hpi-swa/vivide/tree/master/repository/VivideScripts.package
>
> I think this last step might work via the Monticello Browser tools.
>
> Best,
> Marcel
>
>
>
> --
> View this message in context:
> http://forum.world.st/Loading-Vivide-IDE-tp4837445p4837448.html
> Sent from the Squeak - Beginners mailing list archive at Nabble.com.
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://lists.squeakfoundation.org/mailman/listinfo/beginners
>
_______________________________________________
Beginners mailing list
[email protected]
http://lists.squeakfoundation.org/mailman/listinfo/beginners

Reply via email to