Hello!

I am an LMS Admin and NOT a coder or programmer or at... I'm trying to find embed code that I can use in Storyline 360 that does NOT have any player controls... I want the users to have to watch the full video and not have the option of fast-forwarding... can anyone help? I've received a couple of examples from Brightcove help FAQs but they are still not working right... can anyone help?? Here's what I was given:

<iframe src="https://players.brightcove.net/XXXXXXXXXXXX/default_default/index.html?videoId=XXXXXXXXXXX" allowfullscreen="" allow="encrypted-media" width="480" height="300"></iframe>

Brightcove told me to use this to remove player controls:

<!doctype html>
<html>

<head>
<meta charset="UTF-8">
<title>Brightlink Code</title>
<style>
.video-js .vjs-control-bar {
display: none;
}
</style>
</head>

<body>

<iframe src="https://players.brightcove.net/XXXXXXXXXXX/default_default/index.html?videoId=XXXXXXXXXXXX"
allowfullscreen=""
allow="encrypted-media"
width="640" height="360"></iframe>

</body>

</html>

Any help would be AWESOME! I'm so lost... LOL.