Showing hidden elements on specific time of video playback

Hey community!

I feel like I’ve seen resources on how to accomplish what I’m trying to do before, though I can’t for the life of me find it anymore. Basically, I want a collapsed strip to show only at [00:26:17] of video playback.

Here is my page: https://www.beckettarnolddesigns.com/gmcn-replay

And here is my code:

export function videoPlayer1_progress(event) {
 if ( $w("#videoPlayer1").onProgress(1577000).then ( () => {
      $w('#CBAstrip').expand();
  } ));

}

Whenever I run it, it gives me the error “The onProgress parameter that is passed to the onProgress method cannot be set to the value 1577000. It must be of type function.”

Please help!