WCS documents don't support JavaScript! Download WCS Drivers first!!
Commando | Uitleg | Voorbeeld |
---|---|---|
Toont tekst of variabele | print "Hallo " + naam | |
set | Stelt een variabele in | set score = 5 |
alert | Toont een popup | alert "Fout!" |
ask | Vraagt input | ask "Naam?" -> naam |
button | Maakt een knop | button "Klik!" -> klik |
input | Invoerveld met placeholder | input "email" placeholder="Jouw e-mail" |
slider | Slider met bereik | slider "volume" 0 100 |
image | Toont afbeelding | image "https://..." |
section | Tussentitel | section "Welkom!" |
download | Tekst downloaden | download "Hallo" as "hallo.txt" |
draw rect | Tekent een blok | draw rect 100 100 |
play | Speelt audio af | play "url.mp3" |
flow if / else | Voorwaardelijke logica | flow if score > 5 |