-
Notifications
You must be signed in to change notification settings - Fork 0
/
scratch-adventure.html
635 lines (562 loc) · 21.7 KB
/
scratch-adventure.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Making your own Scratch adventure: a guide</title>
<!-- 2013-07-13 Sat 00:21 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="generator" content="Org-mode"/>
<meta name="author" content="Omar Rizwan"/>
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center; }
.todo { font-family: monospace; color: red; }
.done { color: green; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.right { margin-left: auto; margin-right: 0px; text-align: right; }
.left { margin-left: 0px; margin-right: auto; text-align: left; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
pre.src-sh:before { content: 'sh'; }
pre.src-bash:before { content: 'sh'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-R:before { content: 'R'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-java:before { content: 'Java'; }
pre.src-sql:before { content: 'SQL'; }
table { border-collapse:collapse; }
td, th { vertical-align:top; }
th.right { text-align: center; }
th.left { text-align: center; }
th.center { text-align: center; }
td.right { text-align: right; }
td.left { text-align: left; }
td.center { text-align: center; }
dt { font-weight: bold; }
.footpara:nth-child(2) { display: inline; }
.footpara { display: block; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
/*]]>*/-->
</style>
<link rel="stylesheet" type="text/css" href="flat-ui/bootstrap/css/bootstrap.css"></link>
<link rel="stylesheet" type="text/css" href="flat-ui/css/flat-ui.css"></link>
<link rel="stylesheet" type="text/css" href="css/scratch-adventure.css"></link>
<script type="text/javascript" src="flat-ui/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="flat-ui/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/scratch-adventure.js"></script>
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">Making your own Scratch adventure: a guide</h1>
<div class="container">
<div class="well" style="width: 300px; float: right; margin: 10px;">
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">What you can do</a></li>
<li><a href="#sec-2">Planning ahead</a>
<ul>
<li><a href="#sec-2-1">CoderDojo story</a></li>
<li><a href="#sec-2-2">Adventure game</a>
<ul>
<li><a href="#sec-2-2-1">Idea</a></li>
<li><a href="#sec-2-2-2">Result</a></li>
</ul>
</li>
<li><a href="#sec-2-3">Group discussion</a></li>
</ul>
</li>
<li><a href="#sec-3">Starting from Scratch</a>
<ul>
<li><a href="#sec-3-1">Get a Scratch account</a></li>
<li><a href="#sec-3-2">Open up Scratch</a></li>
</ul>
</li>
<li><a href="#sec-4">How do I…</a>
<ul>
<li><a href="#sec-4-1">insert a picture from the Internet as a Sprite?</a></li>
<li><a href="#sec-4-2">make different things happen over time?</a>
<ul>
<li><a href="#sec-4-2-1">What does that mean?</a></li>
<li><a href="#sec-4-2-2">OK. How?</a></li>
</ul>
</li>
<li><a href="#sec-4-3">add a song or music I like?</a></li>
<li><a href="#sec-4-4">get things (Sprites) to disappear and reappear?</a></li>
<li><a href="#sec-4-5">make characters talk to each other?</a></li>
<li><a href="#sec-4-6">change the background?</a></li>
<li><a href="#sec-4-7">move between different scenes?</a></li>
<li><a href="#sec-4-8">do something not listed here?</a></li>
</ul>
</li>
<li><a href="#sec-5">Other examples</a></li>
</ul>
</div>
</div>
</div>
<div id="outline-container-sec-1" class="outline-2">
<h2 id="sec-1">What you can do</h2>
<div class="outline-text-2" id="text-1">
<p>
<p style="text-align: center"><iframe allowtransparency="true" width="485" height="402" class="img-polaroid" src="http://scratch.mit.edu/projects/embed/11328148/" frameborder="0" allowfullscreen></iframe></p>
</p>
<p>
Today, we're going to write a story, sort of like that (but not the same – make it about whatever you want! add effects!). We'll use <span class="vocab-term">Scratch</span>.
</p>
<p>
(Actually, that story is written in Scratch, and you can find out how I wrote it by going to <a href="http://scratch.mit.edu/projects/11328148/">its project page</a> on the Scratch website. Click "See Inside"!)
</p>
<div class="figure">
<p><img src="./img/see-inside.png" style="height: 300px; width: auto;" class="img-polaroid" alt="see-inside.png"/></p>
<p>See inside and find out how Scratch projects are made</p>
</div>
</div>
</div>
<div id="outline-container-sec-2" class="outline-2">
<h2 id="sec-2">Planning ahead</h2>
<div class="outline-text-2" id="text-2">
<p>
Now we'll think about what we want to do, so we have somewhere to start when we start making stuff in Scratch. You should have a worksheet that looks kind of like this:
</p>
<p>
Plan out what you want to do. We came up with some ideas for ourselves, but I'm sure you'll have even better ones.
</p>
</div>
<div id="outline-container-sec-2-1" class="outline-3">
<h3 id="sec-2-1">CoderDojo story</h3>
<div class="outline-text-3" id="text-2-1">
<p>
Remember the Scratch story you saw at the beginning? Here's how we might have planned it out before actually making it:
</p>
<div class="figure">
<p><img src="./img/storyboard-example.png" style="height: 400px; width: auto;" class="img-polaroid" alt="storyboard-example.png"/></p>
<p>An example of what your idea might look like</p>
</div>
</div>
</div>
<div id="outline-container-sec-2-2" class="outline-3">
<h3 id="sec-2-2">Adventure game</h3>
<div class="outline-text-3" id="text-2-2">
<p>
Here's another game we made, called Knight vs. Zombies.
</p>
</div>
<div id="outline-container-sec-2-2-1" class="outline-4">
<h4 id="sec-2-2-1">Idea</h4>
<div class="outline-text-4" id="text-2-2-1">
<p>
<b>Mission</b>: pick the unicorn and reach out Master Yoda for Enlightment while evading the deadly Zombies
</p>
<p>
<b>Hero</b>: Knight (Scratch)
</p>
<p>
<b>Narrator</b>: Parrot (states the mission)
</p>
<p>
Do not collide against the moving Zombies (moving horizontally back and forth), some are stationary.
</p>
<p>
Copy & Paste few zombies
</p>
<div class="figure-align-left">
<div class="figure">
<p><img src="http://desmorto.com/wp-content/uploads/2011/09/megal-slug-zombie-guy.gif" style="height: 80px; width: auto;" class="img-polaroid" alt="megal-slug-zombie-guy.gif"/></p>
<p>Zombies</p>
</div>
</div>
</div>
</div>
<div id="outline-container-sec-2-2-2" class="outline-4">
<h4 id="sec-2-2-2">Result</h4>
<div class="outline-text-4" id="text-2-2-2">
<p>
We used Scratch and went from this idea to a real game: "Knight vs. Zombies"!
</p>
<p>
<p style="text-align: center"><iframe allowtransparency="true" width="485" height="402" class="img-polaroid" src="http://scratch.mit.edu/projects/embed/11328271/" frameborder="0" allowfullscreen></iframe></p>
</p>
</div>
</div>
</div>
<div id="outline-container-sec-2-3" class="outline-3">
<h3 id="sec-2-3">Group discussion</h3>
<div class="outline-text-3" id="text-2-3">
<p>
Cool, you have a potential idea.
</p>
<p>
If you want, share your idea with other people in your group, including your mentor. Maybe someone will like it and want to work with you! Maybe someone will be interested and want to follow your story as you make it.
</p>
<p>
It can't hurt, even if you end up deciding to go your own way!
</p>
</div>
</div>
</div>
<div id="outline-container-sec-3" class="outline-2">
<h2 id="sec-3">Starting from Scratch</h2>
<div class="outline-text-2" id="text-3">
<p>
Okay. Now that we have some idea of what we might want to make today (feel free to change your idea later, though), let's start making stuff.
</p>
</div>
<div id="outline-container-sec-3-1" class="outline-3">
<h3 id="sec-3-1">Get a Scratch account</h3>
<div class="outline-text-3" id="text-3-1">
<p>
We need a Scratch account. (You could start without making a Scratch account, I guess, but then you wouldn't be able to save. And that would be annoying.)
</p>
<p>
Head to <a href="http://scratch.mit.edu">scratch.mit.edu</a> and click "Join Scratch," then follow the three steps. (You might need a parent's e-mail address if you're under 13 – maybe call them over for this part if they're here.)
</p>
<div class="figure">
<p><img src="./img/registration.png" style="height: 300px; width: auto;" class="img-polaroid" alt="registration.png"/></p>
<p>Making an account of my own</p>
</div>
</div>
</div>
<div id="outline-container-sec-3-2" class="outline-3">
<h3 id="sec-3-2">Open up Scratch</h3>
<div class="outline-text-3" id="text-3-2">
<p>
Okay. Now we can get to the fun part. <a href="http://scratch.mit.edu/projects/editor/?tip_bar=getStarted">Open up Scratch itself!</a>
</p>
<div class="figure">
<p><img src="./img/scratch-ide.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-ide.png"/></p>
<p>Parts of Scratch. There's a lot to take in.</p>
</div>
<p>
It has a little guide for getting started – the <span class="vocab-term">Tips</span>. If you want, follow those Tips on the right side of the screen, then play around; if not, just X them out and play around right away! Drag some <span class="vocab-term">Block</span>s from the <span class="vocab-term">Blocks Toolbox</span> to the <span class="vocab-term">Scripts Area</span> (the gray area partly covered by Tips).
</p>
<p>
I'll give you a couple of minutes to play.
</p>
<p>
…
</p>
<p>
…
</p>
<p>
Well, that was fun. Now what?
</p>
<p>
Now you can start building your thing! I recommend you start with one scene – just get all the pictures and objects in the right places. But it's totally up to you.
</p>
<p>
If you don't know how to do something, I have some instructions on how to do stuff. You can also check out some other resources.
</p>
</div>
</div>
</div>
<div id="outline-container-sec-4" class="outline-2">
<h2 id="sec-4">How do I…</h2>
<div class="outline-text-2" id="text-4">
</div><div id="outline-container-sec-4-1" class="outline-3">
<h3 id="sec-4-1">insert a picture from the Internet as a Sprite?</h3>
<div class="outline-text-3" id="text-4-1">
<p>
You'll have to get the picture onto your computer, then feed it back into Scratch so it becomes a Sprite you can use in your story.
</p>
<div class="figure">
<p><img src="./img/upload-image/00-search.png" style="height: 300px; width: auto;" class="img-polaroid" alt="00-search.png"/></p>
<p>Find it on Google Images first, then open the original.</p>
</div>
<div class="figure">
<p><img src="./img/upload-image/01-save-image.png" style="height: 200px; width: auto;" class="img-polaroid" alt="01-save-image.png"/></p>
<p>Save the original image to a file somewhere on your computer. (Remember where you put it!)</p>
</div>
<div class="figure">
<p><img src="./img/upload-image/02-upload-from-file.png" style="height: 400px; width: auto; class img-polaroid" alt="02-upload-from-file.png"/></p>
<p>That image you just saved to your computer? Upload it back into Scratch with this button.</p>
</div>
<p>
You can make as many Sprites as you need and move them around to form your initial scene.
</p>
</div>
</div>
<div id="outline-container-sec-4-2" class="outline-3">
<h3 id="sec-4-2">make different things happen over time?</h3>
<div class="outline-text-3" id="text-4-2">
</div><div id="outline-container-sec-4-2-1" class="outline-4">
<h4 id="sec-4-2-1">What does that mean?</h4>
<div class="outline-text-4" id="text-4-2-1">
<p>
So far, we've drawn some stuff on the screen. You could just use Paint or Word or something to do that. It looks cool, but we haven't done anything really special yet.
</p>
<p>
Scratch is more powerful than those because:
</p>
<ol class="org-ol">
<li>You can make what shows up on the screen animate.
(Okay, what's the big deal? You could draw a flipbook or something, too. It's just animation.)
</li>
<li>You can make the changes <b>depend on what the person running your program does</b>.
That's what computer programming lets you do, in Scratch and in other languages. Somebody else runs your program, and they don't just get some prewritten result every time. They get to put some input in, and see something different depending on what they put in.
</li>
</ol>
</div>
</div>
<div id="outline-container-sec-4-2-2" class="outline-4">
<h4 id="sec-4-2-2">OK. How?</h4>
<div class="outline-text-4" id="text-4-2-2">
<p>
The right side of the screen in Scratch has a toolbox with some <span class="vocab-term">Block</span>s, and a (currently empty) <span class="vocab-term">Script Area</span> where you can put those Blocks. The Blocks in the Script Area are your program. They're what Scratch will run, and they can change what shows up on the <span class="vocab-term">Stage</span>.
</p>
<p>
Blocks are like instructions for Scratch to do something to the screen.
</p>
<p>
Link them to event blocks.
</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-3" class="outline-3">
<h3 id="sec-4-3">add a song or music I like?</h3>
<div class="outline-text-3" id="text-4-3">
<p>
You can pick a built-in sound, record your own, or upload one from your computer.
</p>
<div class="figure">
<p><img src="./img/scratch-audio-select.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-audio-select.png"/></p>
<p>How to add a song</p>
</div>
<p>
Now that it's part of your project, you can use the Play Sound Block to play it!
</p>
<div class="figure">
<p><img src="./img/scratch-audio-play.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-audio-play.png"/></p>
<p>Playing the song</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-4" class="outline-3">
<h3 id="sec-4-4">get things (Sprites) to disappear and reappear?</h3>
<div class="outline-text-3" id="text-4-4">
<div class="figure">
<p><img src="./img/scratch-show-hide.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-show-hide.png"/></p>
<p>How to hide and show Sprites</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-5" class="outline-3">
<h3 id="sec-4-5">make characters talk to each other?</h3>
<div class="outline-text-3" id="text-4-5">
<p>
This example is from Pokemon Stories:
<p style="text-align: center"><iframe allowtransparency="true" width="485" height="402" class="img-polaroid" src="http://scratch.mit.edu/projects/embed/11283077/" frameborder="0" allowfullscreen></iframe></p>
</p>
<ol class="org-ol">
<li>Make sure to have at least two Sprites in your scene.
</li>
</ol>
<div class="figure">
<p><img src="./img/dialogue/dialogue-sprites.png" style="height: 500px; width: auto;" class="img-polaroid" alt="dialogue-sprites.png"/></p>
<p>Sprites for Elephant and Pikachu</p>
</div>
<ol class="org-ol">
<li>Select the Elephant Sprite and add alternating "Say" and "Wait" Blocks.
</li>
</ol>
<div class="figure">
<p><img src="./img/dialogue/dialogue-elephant.png" style="height: 200px; width: auto;" class="img-polaroid" alt="dialogue-elephant.png"/></p>
<p>Elephant's Script</p>
</div>
<ol class="org-ol">
<li>Select the Pikachu Sprite and alternate the Wait and Say Blocks with delays matching the Elephant's.
</li>
</ol>
<p>
In the first step, the Elephant "says" for 5 seconds (Hence, Pikka wait for 5 seconds), and so on.
</p>
<div class="figure">
<p><img src="./img/dialogue/dialogue-pikka.png" style="height: 220px; width: auto;" class="img-polaroid" alt="dialogue-pikka.png"/></p>
<p>Pikachu's Script</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-6" class="outline-3">
<h3 id="sec-4-6">change the background?</h3>
<div class="outline-text-3" id="text-4-6">
<div class="figure">
<p><img src="./img/scratch-background.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-background.png"/></p>
<p>How to customize the background image in a backdrop</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-7" class="outline-3">
<h3 id="sec-4-7">move between different scenes?</h3>
<div class="outline-text-3" id="text-4-7">
<div class="figure">
<p><img src="./img/scratch-switch-backdrop.png" style="height: 500px; width: auto;" class="img-polaroid" alt="scratch-switch-backdrop.png"/></p>
<p>How to change between different backdrops</p>
</div>
</div>
</div>
<div id="outline-container-sec-4-8" class="outline-3">
<h3 id="sec-4-8">do something not listed here?</h3>
<div class="outline-text-3" id="text-4-8">
<p>
Try things in this order if you get stuck or can't figure something out.
</p>
<ol class="org-ol">
<li>Find it online. There are a bunch of sites where you can learn how to use Scratch:
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/projects/editor/?tip_bar=getStarted">Step-by-step Tips intro</a>
</li>
<li><a href="http://scratch.mit.edu/scratchr2/static/__1372902973__//pdfs/help/Getting-Started-Guide-Scratch2.pdf">Scratch 2.0 Getting Started guide</a>
</li>
<li><a href="http://scratch.mit.edu/help/cards">Scratch cards</a>
</li>
<li><a href="http://scratch.mit.edu/help/videos">Short video tutorials</a>
</li>
</ul>
</li>
<li>Ask kids near you! Maybe they got stuck on the same problem.
</li>
<li>Ask a mentor!
</li>
</ol>
</div>
</div>
</div>
<div id="outline-container-sec-5" class="outline-2">
<h2 id="sec-5">Other examples</h2>
<div class="outline-text-2" id="text-5">
<p>
<div class="media"><a class="pull-left" href="http://scratch.mit.edu/projects/11283077/"><img class="media-object" src="http://cdn.scratch.mit.edu/static/site/projects/thumbnails/1132/2321.png"></img></a><div class="media-body"><h4 class="media-heading"><a href="http://scratch.mit.edu/projects/11283077/">Pokemon Stories (dialogue using delays)</a></h4><p>Dialogue using delays</p></div>
</p>
<ul class="org-ul">
<li>Pokemon Stories (dialogue using delays)
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/projects/11283077/">http://scratch.mit.edu/projects/11283077/</a>
</li>
</ul>
</li>
<li>Haunted House (longer dialogue using delays)
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/projects/11279743/">http://scratch.mit.edu/projects/11279743/</a>
</li>
</ul>
</li>
<li>Linear story (multiple backdrops)
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/projects/11266878/">http://scratch.mit.edu/projects/11266878/</a>
</li>
</ul>
</li>
<li>Teens at the Castle (dialogue using broadcasting - more advanced)
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/projects/10128197/">http://scratch.mit.edu/projects/10128197/</a>
</li>
</ul>
</li>
<li>Starter Projects
<ul class="org-ul">
<li><a href="http://scratch.mit.edu/starter_projects/">http://scratch.mit.edu/starter_projects/</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="author">Author: Omar Rizwan</p>
<p class="date">Created: 2013-07-13 Sat 00:21</p>
<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.2.50.1 (<a href="http://orgmode.org">Org</a> mode 8.0.5)</p>
<p class="xhtml-validation"><a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a></p>
</div>
</body>
</html>