@topelovely, you should be able to insert the HTML file (which will reference JavaScript and CSS files) produced by Edge Animate as an iframe.
For example...
File Structure
-
index.html (produced by in5)
-
assets/ (products by in5)
-
edge/ (put Edge Animate HTML, CSS, and Javascript files here)
Then insert the following HTML code (or similar) into your InDesign document before exporting with in5:
<iframe width="400" height="400" src="edge/nameOfEdgeAnimateFile.html" frameborder="0" ></iframe>
We'll also look into the possibility of translating the OAM file into something that in5 can read. If you can upload a sample OAM and INDD file that would be helpful for testing.
Based on @topelovely's file below, I've created a sample page:
https://ajarproductions.com/pages/products/in5/demos/edge_animation/index.html
and Source files.
The trick is making sure the file path in the src attribute matches your output. For example, if the in5 index.html file had gone into an html5_output subfolder as it does by default the src attribute in the iframe should reflect that:
src="../edge/nameOfEdgeAnimateFile.html"
The double period (..) in a file path indicates one directory up.