I am able to get a plain .swf file to play in a shadowbox via
My problem is I need to pass dynamic content into the .swf file. I cant figure out to get the shadowbox to open and then have the .swf file display the dynamic content. Here is the flash code I am using:
<script type="text/javascript">
var fo = new SWFObject("flash/peopleGallery/loader.swf", "People Viewer", "740px", "360px", "8", "#ffffff");
//Optional Configuration
//fo.addVariable("langOpenImage", "Open Image in New Window");
//fo.addVariable("langAbout", "About");
fo.addVariable("xmlURL", "images/peoples/" + peopleid + "/gallery.xml");
fo.addVariable("enlarge", zoomID);
fo.write("flashcontent");
</script>
(the *peopleid* is populated by a numerical number by looking in the url for the that reference)
Any help would great.
Thanks.