@brad-schmidt, I did some more research and I think I have way that's not terribly difficult.
Install nodejs if it's not already installed. Create a folder like: c:\eaglecam Download and unzip the version of the chrome webdriver for your version of Chrome into that folder.http://chromedriver.chromium.org/downloads Copy/paste the code below into a file called play.js in your folder. Open a cmd prompt and type: cd \eaglecam Run: npm install selenium-webdriver Run: node play.js If that works, open the TRIGGERcmd GUI and create a this command: 😄 & cd \eaglecam & node play.js const {Builder, By, Key, until} = require('selenium-webdriver'); var driver = new Builder() .forBrowser('chrome') .build(); driver.manage().window().maximize(); driver.get('https://portal.hdontap.com/s/embed/?stream=aef-nefl-CUST-multicam&ratio=16:9&fluid=true') .then(_ => driver.sleep(2000)) .then(_ => driver.findElement(By.className('vjs-big-play-button')).click())