How can I extend animation delay beyond 8 secs

I need a text book to appear 15 secs after page loaded (after a video finishes playing) I cant find a way to increase the delay to 15 secs… the default is 8 secs. Any code block that would do this?

You can define the delay and duration of a method called .show() using an object called showOptions , for example:

const showOptions = {
    delay: 15000,
    duration: 500
}

$w("#textBook").show("fade", showOptions)

If it is after something happens, then you would have to chain this animations.