Adding SWF to HTML based AIR App - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T01:13:32Zhttp://stackoverflow.com/feeds/question/766190http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/766190/adding-swf-to-html-based-air-app0Adding SWF to HTML based AIR AppRobbie2009-04-19T21:57:47Z2009-04-20T22:11:05Z
<p>Hi, </p>
<p>I have a little HTML based Adobe AIR project I'm playing with and I'd like to add an existing SWF to the project. Now, I can see it running via the trace/log messages coming through from the SWF, but I can't seem to call any function within the SWF. I've read that the ExternalInterface function isn't available within the Air container, which looks like the right thing to use if within a browser.</p>
<p>Most of the samples on the Adobe site are all HTML, or all Flex/ActionScript. Has anyone tried to pull these together successfully, either as source, or through compiled SWF?</p>
<p>Many thanks</p>
<p>Robbie</p>
http://stackoverflow.com/questions/766190/adding-swf-to-html-based-air-app/766304#7663040Answer by Joel Hooks for Adding SWF to HTML based AIR AppJoel Hooks2009-04-19T22:53:44Z2009-04-19T22:53:44Z<p>Using a compiled swf has sandboxing issues.</p>
<p>Maybe you can make use of LocalConnection? <a href="http://blog.everythingflex.com/2008/01/11/more-fun-with-air-localconnection-source-included/" rel="nofollow">Here is an example</a>.</p>
http://stackoverflow.com/questions/766190/adding-swf-to-html-based-air-app/766320#7663200Answer by Theo.T for Adding SWF to HTML based AIR AppTheo.T2009-04-19T23:01:28Z2009-04-19T23:01:28Z<p>I guess this article answers pretty completely your question :</p>
<p><a href="http://www.hufkens.net/2008/09/loading-remote-swf-files-in-air/" rel="nofollow">http://www.hufkens.net/2008/09/loading-remote-swf-files-in-air/</a></p>
http://stackoverflow.com/questions/766190/adding-swf-to-html-based-air-app/770324#7703240Answer by Robbie for Adding SWF to HTML based AIR AppRobbie2009-04-20T22:11:05Z2009-04-20T22:11:05Z<p>This basically was what I needed:</p>
<p><a href="http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ed9.html" rel="nofollow">http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ed9.html</a></p>
<p>However, my scenario was complicated in that it turns out my SWF had an embedded SWF and I was trying to access a class within the embedded SWF. Once I tried to access a class within the wrapping SWF, it all was rosy.</p>
<p>Cheers</p>
<p>Robbie</p>