Welcome to the Flow Editor
This short tutorial gets you from a blank workspace to a running “Hello, flow” script.
Total time: ≈ 5 minutes.
1. Open (or create) a Flow
- From the workspace home screen choose New → Flow.
- The Flow Editor loads.
You will see
• the Toolbox on the left,
• an empty Script panel in the centre, and
• the Browser / Console tabs on the right.
Vocabulary
• Flow – an executable visual script.
• Block – a draggable command you add to a flow.
• Toolbox – the left-hand sidebar that holds all available blocks.
2. Add a Block
- In the Toolbox expand the Message category.
- Drag the write to console block into the Script panel.
A red caret shows where the block will land. - Release the mouse—your first block is in the flow!
3. Edit the Block
- Click the pencil ✎ in the block header.
The editor enters Edit mode (everything else dims). - In the text field type:
Hello, flow - Click Ok.
You are now back in Drag mode.
Tip
While in Edit mode you can drag variables, operators, or other blocks directly into a field to nest them.
4. Run the Flow
- Open the Console tab (right sidebar) if it is not already open.
- Close the Browser tab if it is open (we won’t use it for now).
- Press ▶ Play in the top bar.
- The block’s outline flashes blue while it executes, then turns green on success.
- You should see
Hello, flow
5. Experiment
Try a small change to prove you have the loop:
- Click the block’s ✎ again and replace the text with
Hi. - Ok → ▶ Play.
- The block is already green from the previous run, so Play starts after it.
Hit ⏹ Stop, then ▶ Play once more to run from the top—now the Console printsHi.
Congratulations!
You now know how to
• drag blocks,
• edit parameters, and
• run a flow.