If you’ve ever wanted to automate editable rolling credits for your broadcast or live production workflow using Ross XPression, this tutorial shows you how. This capability requires both the free Rundown Creator XPression plugin and the Studio version of Ross XPression (as the latter supports scripting).
This setup allows producers and editors to quickly modify credits directly in Rundown Creator, then have those updates automatically sync into XPression — with live-preview and edit capabilities right in the Sequencer.
In XPression (Layout Mode): Creating the Scene Group
Follow these steps to prepare your project for rolling credits.
- Open your project
- Switch to Layout Mode
- Create a new Scene Group and name it CREDITS
- Set the Scene Group Effect to Roll
- (Optional) Select Blank Page on Start and Treat Last Page as Full
- Create a layer object
- Add a text object to that layer object and name it Names
- Assign your desired credits font to this text object
- Create a new Scene and drop it into the Scene Group
- Press F2 and rename the scene to NAMES
- Add a text object called Credits and assign your scene font
- Right-click on the scene and select Edit Script Events
- Add the following script:
Dim Crawl as xpSceneGroup
Self.GetParent(Crawl)
Dim ParentText, Text as xpTextObject
Crawl.GetObjectByName("NAMES", ParentText)
Self.GetObjectByName("CREDITS", Text)
Text.Text = ParentText.Text
In Rundown Creator: Building the Editable Credit Script
- Log into Rundown Creator
- Open the Script Editor
- Insert the following:
<xpression
id=""
scene="CREDITS"
Names="
- Enter your list of names and positions, for example:
Executive Producer:
Name Here
Director:
Name Here
Technical Director:
Name Here
- Close the command by adding:
">
You’re Done!
Your credit scroll will now appear within your show’s imported group of graphics on the Sequencer side of XPression.
Any changes made in Rundown Creator will automatically update once saved.
Bonus Tip: Editable Preview and Styling
When you click on your rolling credit item in the Sequencer, the published text item is editable — just like any other text field. You’ll also see a visual preview in the preview monitor (this is what you initially created in the first scene of the Scene Group).
To stylize your preview to match your on-air look:
- Copy the text object from the scene NAMES
- Rename it from Credits to Names
If you’d like to include a sponsor graphic or logo (like in theatrical credits), simply:
- Create an additional scene
- Drop it onto the same CREDITS Scene Group
- Add your logo or artwork
Comments are closed