Reputation: 7728
I have seen someone posted a question in stack overflow titled
Ooyala player version 2 or 3 not running in IE 10 metro mode
and suggested answer was
<!DOCTYPE html>
<html>
<head>
<title>Untitled Page</title>
<script type="text/javascript" src='http://player.ooyala.com/v3/{PLAYER BRANDING ID}'></script>
</head>
<body>
<!-- Player Placement -->
<div id='playerwrapper' style='width:750px;height:312px;'></div>
<script>
OO.ready(function() {
var videoPlayer = OO.Player.create('playerwrapper', '{EMBED CODE}');
videoPlayer.play();
});
</script>
</body>
</html>
I have a similar problem.
It works fine in win8 desktop mode, but when I access this in IE10 metro mode it shows the following message:
You need to have adobe flash player to view this content
From ooyala support I have gotten a sample html url (same code-published in their server) which is almost the same code in the above answer. Surprisingly it runs without flash in ie10 metro mode.
When I open page view source their page code and mine have no difference. Only difference is web server.
What am I missing here? Any IIS server settings?
Upvotes: 0
Views: 404
Reputation: 246
There should not be any differences when our player is embedded on a page hosted by IIS. We can help troubleshoot this if we can get a link to the page that is breaking, please post it here or file a ticket at http://support.ooyala.com/users/contact
Upvotes: 0