Button
737373
RGB Hex value:
Alpha value:
Presenting - SSP
ObjectEditor
X
M

ObjectEditor
X
M

Fabrik Parts List
X
M

function converter(value) { return value; }
Update
Start Ticking
show pins
morph
pin
I/O
value
rule
Slider
value
output
1

Button1
fire
output
true

Elephant
setScale
input
--

Elephant
setFill
input
--

ColorPicker
color
output
rgb(115,115,115)

Text2
textString
input
--

Text2
savedTextString
input
--

List1
itemList
input
--

List1
selection
output
CodeSnippets



















































choose target
Workspace
X
M

23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
            migrationLevel: LivelyMigrationSupport.migrationLevel,
            serializedWorld: json,
            html: preview,
            styleSheets: css,
            externalScripts: [bootstrapFile]
        },
        doc = lively.persistence.HTMLDocBuilder.documentForWorldSerializ
ation(docSpec);
    this.savedWorldAsURL = undefined;
    lively.bindings.connect(this, 'savedWorldAsURL', this, 'visitNewPage
AfterSaveAs', {
        updater: function($updv) {
            if (v && v.toString() !== URL.source.toString()) { $upd(v); 
}
        }
    })
    if (URL.source.eq(url)) {
        this.storeDoc(doc, url, checkForOverwrites);
    } else {
        this.checkIfPathExistsAndStoreDoc(doc, url, checkForOverwrites);
    }
}
save snippet:
this.world().saveWorldAs(
    URL.create("http://lively-kernel.org/core/users/Dan/world-from-local
.html"),
    false,
    URL.create('http://lively-kernel.org/core/core/lively/bootstrap.js'
))
X