Lively Kernel canvas
// this script is evaluated on world load
MyConsole = WorldMorph.current().submorphs.detect(function(ea){return ea.name == "MyConsole"});
if(!MyConsole) return;
MyConsole = MyConsole.component;
MyConsole.setText("-- start --");
MyConsole.log = function(s) {
this.setText(this.formalModel.getText() + "\n" + s);
};
MyConsole.log("My Console initialized!");
MyConsole.morph.resetScrollPane = function() {
var sp = this.enclosingScrollPane();
if (sp) sp.scrollToBottom();
};
// console.consumers seems to be broken... so we go the hard waz
console.log = console.log.wrap(function(proceed, s) {
MyConsole.log(s)
proceed(s)})
console.log("wrapped console for MyConsole successfully")
10000.8634447751788024Wikicontroltrue
3.Object-specificBehaviorAdaptation20
ContextJS40
1.LivelyKernel20
10000.47856662163677827Wikicontroltrue
10000.837315950321277Wikicontroltrue
LayerComputation20
LayersAssignment20
ImplicitActivation20
TimeZoneExample20
2.CotextJS-COPinJavaScript20
PersonExample20
LayeredStateExample20null36