How To
Using this guide
Script contents appear in a code block, as shown below. You can select and copy the contents, or hover over the top-right corner to find a "Copy" button.
Some scripts have "User Parameters", generally located at the top of the script. User Parameters are explained in a box above the code block, and are highlighted within the code block. For example:
USER PARAMETERS
variable_name
explanation
-- For help, bug reports, or feature suggestions, please visit https://github.com/samschloegel/qlab-scripts
-- Built for QLab 5. vYYMMDD-XX
set variable_name to "some value"
tell application id "com.figure53.QLab.5" to tell front workspace
...
end tell
2
3
4
5
6
7
8
Using Script Cues
Many of the scripts here are best used in a Script Cue, with an assigned hotkey trigger.
- Create a cue list called "Hotkeys"
- Create a new Script Cue
- Inspector > Triggers tab > Enter your preferred hotkey trigger
- Inspector > Script tab > Paste script in and click "Compile Script"
Using macOS Script Editor
- Applications > Utilities > Script Editor > New Script
- Paste script in and click "Compile" (Cmd-K)
- Do what you need to in QLab (such as selecting relevant cues)
- In Script Editor, click Run (Cmd-R)
Learning to write your own scripts
I learned to write AppleScript for QLab primarily by trying to use and interpret other people's scripts - which is why I am sharing and documenting my own scripts here. AppleScript is relatively human-readable on its own, which makes it very accessible to inexperienced users.
Here are some useful guides and documentation: