Scratchmitedu-projects-editor-tutorial-getstarted Patched -

Creating a story in the Scratch Projects Editor allows users to learn coding through creative, interactive scenes. The process involves selecting backdrops, adding sprites, and using blocks from the Events, Looks, and Sound categories to animate character dialogue and movement. Learn more about creating stories in the YouTube tutorial. How to Make a Story in Scratch | Tutorial


A. The Blocks Palette (Code, Costumes, Sounds)

The editor has three distinct tabs at the top of the left panel.

  1. Code: Contains 9 color-coded categories: scratchmitedu-projects-editor-tutorial-getstarted

    • Motion (Blue): Move, rotate, go to coordinates.
    • Looks (Purple): Speech bubbles, size, effects.
    • Sound (Pink): Play drums, notes, or uploaded audio.
    • Events (Yellow/Gold): Triggers like when green flag clicked or when space key pressed.
    • Control (Orange): Loops (repeat, forever) and conditions (if...then...else).
    • Sensing (Light Blue): Ask questions, detect mouse position, collision detection.
    • Operators (Green): Math (+, -), comparisons (>, <), and logic (and, or).
    • Variables (Red/Orange): Create your own data trackers (score, health, timer).
    • My Blocks (Pink): Advanced – create your own custom procedures.
  2. Costumes: This is the visual editor. You can draw, paint, erase, or import images. Use the Vector Mode for scaling without losing quality, or Bitmap Mode for pixel art.

  3. Sounds: Record, upload, or choose from Scratch’s built-in sound library. You can trim audio and apply effects like "fade in" or "robot." Creating a story in the Scratch Projects Editor

What the Tutorial Covers (Get Started)

The “Get Started” tutorial teaches:

  1. Moving a sprite with a move 10 steps block
  2. Starting a script using a when green flag clicked block
  3. Adding a sound with the play sound meow block
  4. Changing backdrops
  5. Saving and sharing the project

All in about 5–10 minutes.

B. The Scripts Area (Your Digital Workbench)

This is the large white space on the right. Pro tip: You can right-click (or two-finger click on a Mac) in the Scripts Area and select "Clean Up" to automatically align your blocks into a neat grid.

Step 1: Set the Stage

7. Control Timing and Loops

Example: Make the cat glide side to side forever. Code: Contains 9 color-coded categories:

when green flag clicked
forever
    glide 1 secs to x: 200 y: 0
    glide 1 secs to x: -200 y: 0

Part 8: What’s Next? Beyond the Tutorial

You have completed the scratchmitedu-projects-editor-tutorial-getstarted foundation. Here is your roadmap for the next month:

  1. Week 1: Add a timer and a high score variable to your Cat game.
  2. Week 2: Use the "Costumes" tab to create a running animation (switch between costume 1 and 2 using a wait 0.2 seconds loop).
  3. Week 3: Learn about Cloning (Control > Create clone of myself). This lets you create 100 enemies from a single sprite.
  4. Week 4: Explore the Scratch Community. Click "Explore" on the website, look at the "Inside" of a project (Remix), and see how others code.