Skip to content

Instantly share code, notes, and snippets.

@protrolium
Last active May 2, 2024 05:24
Show Gist options
  • Select an option

  • Save protrolium/1df3a92e8e0011bf39abe71a27173e62 to your computer and use it in GitHub Desktop.

Select an option

Save protrolium/1df3a92e8e0011bf39abe71a27173e62 to your computer and use it in GitHub Desktop.
QLab + Applescript to control Applications & Panasonic Projectors over LAN

QLab + Applescript commands for Projector & Application Boot-up Routine

Boot Up Sequence

Open Projector Manager app

tell application "Terminal"
   delay 0.5
   do script "open -a Projector Manager"
   delay 0.5
   tell application "Terminal to quit"
end tell

### Panasonic PT-RZ21K Boot-Up
tell application "ProjectorManager"
   PowerOn 0
end tell
### Launch Resolume Arena 5
tell application "Arena"
   delay 0.5
   do script "open -a Arena"
   delay 0.5
   tell application "Terminal" to quit
end tell
### Douse Shutter
tell application "ProjectorManager"
   AvMute 1
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment