Objective: Use bitsbox to create 4 online apps.
Language
syntax = correct order of words and symbols.
Here is an example of correct syntax:
|
Here is an example of incorrect syntax:
|
Special keys you might need:
parentheses braces apostrophe
How to login with your Google user name and password
READY TO START???
Read this first:
Beginner
- Make 4 online apps
Intermediate
Can you change the background? Can you change the slinky?
Advanced
Build a numbered app:
App # 7939
App # 2403
1 fill('black')
2
3 function touch() {
4 red = random(255)
5 }
6
7 function drag() {
8 green = x/3
9 blue = y/4
10 color(red,green,blue)
11 circle(x,y,5)
12 }
App # 6850
1 b = text('DRAG TO DRAW',CENTER)
2
3 function touch() {
4 startx = x
5 starty = y
6 }
7
8 function touching() {
9 b.hide()
10 wide = x - startx
11 high = y - starty
12 if (wide > 0 && high > 0) {
13 color = 'denim'
14 } else if (wide > 0 && high < 0) {
15 color = 'dandelion'
16 } else if (wide < 0 && high > 0) {
17 color = 'coral'
18 } else if (wide < 0 && high < 0) {
19 color = 'white'
20 }
21 b = box(startx,starty,wide,high,color)
22 }
23
24 function untouch() {
25 box(startx,starty,wide,high,color)
26 }
App # 4115
- visit incredibox |