Got it!!! If anyone else encounters this, the solution is here:

http://stackoverflow.com/questions/6...itrary-element

Basically, had to change this line in the html5 file:

<script>var stage = new swiffy.Stage(document.body, swiffyobject);</script>
to this, with the div identified:

<script>var stage = new swiffy.Stage(document.getElementById("id8_inside") , swiffyobject);</script>
Thanks!!