The edge animation does not load in IE9
just a blank page.
Every other major browser works just fine.
if I surround the script with a try catch like so:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Julekort 2014</title>
<!--Adobe Edge Runtime-->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<script type="text/javascript" charset="utf-8" src="edge_includes/edge.5.0.1.min.js"></script>
<style>
.edgeLoad-EDGE-26285399 { visibility:hidden; }
</style>
<script>
try{
AdobeEdge.loadComposition('Julekort_2.0', 'EDGE-26285399', {
scaleToFit: "none",
centerStage: "none",
minW: "0",
maxW: "undefined",
width: "100%",
height: "5000"
}, {"dom":[]}, {"dom":[]});
} catch (e){
alert(e);
}
</script>
<!--Adobe Edge Runtime End-->
IE9 alerts:
TypeError: Object doesn't support property or method 'loadComposition'
Any help appreciated.