Links in Storyline

Nov 23, 2022

I have created a Learning in Storyline with various links to web content (web object) built in. Now I have the problem that in Review and in our LMS (Workday-Learning) the content is not displayed and the following message appears. e.g. www.linkedin.com hat eine Verbindung verweigert. 

What can be the reason for this? Also for older courses in our LMS the links do not work anymore.

3 Replies
Jürgen Schoenemeyer

check the links with a small html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>iFrame test</title>

<style>
iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: none;
overflow: hidden;
}
</style>
</head>
<body>
<iframe src='https:// ... '></iframe>
</body>
</html>

add your url(s) in the src attribute