Forum Discussion

RainerRosskopf's avatar
RainerRosskopf
Community Member
3 years ago

Links in Storyline

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.

  • These are different links. (youtube, LinkedIn, web pages...) I have tried this with the different variants. Web object, direct link, new browser, in slide.... Since it has worked in the past, the problem may be with Storyline or it may be with our IT security.

  • 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