Five minutes, end to end. We’ll load an image, add an effect, drive one of its parameters with time, and save the result.
The starting graph
A fresh project opens inside a layer with just Group Input and Group Output. The preview on the left shows whatever the composition Output receives — empty until you wire something in.
Add a source
Press Shift+A. The add-node search opens. Type image source and hit Enter.
Click the new node. The parameters panel on the lower right reveals an upload slot — pick an image file. The preview updates as soon as the image decodes.
Drag from the Image Source output into Group Output. Or drag any image file directly onto the graph pane — it turns into a new Image Source node at the drop point.
Add an effect
Let’s put a gaussian blur between the image and the output.
Press Shift+A. The add-node search opens.
Type gauss. Gaussian Blur filters to the top of the list. Enter drops it onto the graph.
Drag the new node over the wire between Image Source and Group Output. The wire highlights yellow — release to splice the blur in. Both connections rewire automatically.
Expose a parameter
Select the Gaussian Blurnode. In the parameters panel, notice the small empty circle to the left of the “Radius” slider — that’s the expose toggle. Click it.
A new radiusinput socket appears on the node in the graph. Anything that outputs a scalar value can drive the blur’s radius through that socket.
Shift+A, type scene time, Enter.
Drag from the new node’s output into the Gaussian Blur’s newly-exposed radius input.
Hit Space or the play button on the timeline at the bottom. The blur pulses as scene time ticks forward.
The exposed parameter’s slider is now grayed out in the panel — the incoming wire is driving it. Disconnect the wire to get manual control back.
Save it
Hit ⌘+S. Since this is a new project, you’ll be asked for a name. Anything goes — the save system will warn you if the name collides with another project of yours and offer to overwrite.
The file-name pill at the top center of the menu bar now shows your chosen name with a green dot. Make any change and it flips yellow; hit ⌘+S again and it goes back to green.
What’s next
Read Editor basics for every gesture the graph responds to.
Peek at Saving and loading for the difference between Save, Save As, and Save Incremental.
Browse the node reference — one page per category, accessible from the sidebar.