Here's a really quick example. Took about 10 mins including firing up the laptop.
You could get more clever and have it enable output and select a zone, and even start at a certain PC time, and end itself and shut down automatically, but I just wanted to show how straightforward it is.
Code:
CodeName "Timed cues"
// Autostart // unrem this line if the script should start automatically
// StopOnBlackout // unrem this line if the script must stop when Blackout pressed
SelectGrid 1 // 1-main grid, 2-grid at bottom. 0-recently active
SelectCatName "Atmospherics" // define correct Category name.
SelectTabName "Sheets" // define Page name!
FocusCell 1,1 // Column (1..10), Row (1..6)
StartCell // start current cell
Sleep 2000 //Wait for 1 second
StopCell // stop current cell
Sleep 5000 //Wait for 5 seconds
//Repeat steps using different cell reference
FocusCell 2,1 // Column (1..10), Row (1..6)
StartCell // start current cell
Sleep 2000 //Wait for 1 second
StopCell // stop current cell
Sleep 5000 //Wait for 5 seconds
FocusCell 3,1 // Column (1..10), Row (1..6)
StartCell // start current cell
Sleep 2000 //Wait for 1 second
StopCell // stop current cell
Sleep 5000 //Wait for 5 seconds
FocusCell 4,1 // Column (1..10), Row (1..6)
StartCell // start current cell
Sleep 2000 //Wait for 1 second
StopCell // stop current cell
Sleep 5000 //Wait for 5 seconds
//Repeat indefinately
restart