Okay so this is a really common error, and its happened to me several times....
So I created a new and followed the instructions in this blog post:
How to Repair Edge Animate Corrupted Files l EdgeHero
Although the new project is now loading, I can't see the stage. I see it in the timeline, but not the on the main screen. Also seems quite buddy as it loads then shuts down occasionally and when i export it to oam I only see 50% of the project.
Heres my code:
HTML:
<!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>Untitled</title>
<!--Adobe Edge Runtime-->
<script type="text/javascript" charset="utf-8" src="edge_includes/edge.6.0.0.min.js"></script>
<style>
.edgeLoad-EDGE-61113615 { visibility:hidden; }
img { display: block; }
</style>
<script>
AdobeEdge.loadComposition('index', 'EDGE-61113615', {
scaleToFit: "none",
centerStage: "none",
minW: "0px",
maxW: "undefined",
width: "undefined",
height: "undefined"
}, {dom: [ ]}, {dom: [ ]});
</script>
<!--Adobe Edge Runtime End-->
</head>
<body style="margin:0;padding:0;">
<div id="Stage" class="EDGE-454503">
</div>
</body>
</html>
EDGE.ACTIONS.JS:
(function($, Edge, compId){
var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
//Edge symbol: 'stage'
(function(symbolName) {
Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 2000, function(sym, e) {
// insert code here
});
//Edge binding end
})("stage");
//Edge symbol end:'stage'
//=========================================================
//Edge symbol: 'Down-level'
(function(symbolName) {
})("Down-level");
//Edge symbol end:'Down-level'
})(window.jQuery || AdobeEdge.$, AdobeEdge, "EDGE-61113615");