How to access Actionscript from Javascript in Adobe AIR - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T03:15:35Z http://stackoverflow.com/feeds/question/754542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/754542/how-to-access-actionscript-from-javascript-in-adobe-air 0 How to access Actionscript from Javascript in Adobe AIR David Robinson 2009-04-16T02:38:58Z 2009-04-17T04:24:58Z <p>I have an AIR application written in html/javascript and I want to use the Actionscript print functions but I have no experience in Actionscript for AIR.</p> <p>Where do I put the Actionscript code ? Does it go into an mxml file or does it need to be compiled into a Flash application. Where do I put it and how do I include it into the html document ? Finally, how do I call the AS function from Javascript ?</p> <p><strong>=====update=====</strong></p> <p>I know I have to compile either an .mxml or .as file into .swf using mxmlc and I have the following in my .as file:</p> <pre><code>package { import mx.controls.Alert; public class HelloWorld { public function HelloWorld():void { trace("Hello, world!"); } } } </code></pre> <p>Or alternately, this in a .mxml file:</p> <p></p> <pre><code>&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.controls.Alert; public function HelloWorld():void { Alert.show("hello world!"); trace("Hello, world!"); } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Application&gt; </code></pre> <p>This compiles OK, but when I include it in a html file with:</p> <pre><code>&lt;script src="actionscript.swf" type="application/x-shockwave-flash"&gt;&lt;/script&gt; </code></pre> <p>I get the following error:</p> <p>TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.managers::FocusManager/activate() at mx.managers::SystemManager/activateForm() at mx.managers::SystemManager/activate() at mx.core::Application/initManagers() at mx.core::Application/initialize() at actionscript/initialize() at mx.managers::SystemManager/<a href="http://www.adobe.com/2006/flex/mx/internal::childAdded" rel="nofollow">http://www.adobe.com/2006/flex/mx/internal::childAdded</a>() at mx.managers::SystemManager/initializeTopLevelWindow() at mx.managers::SystemManager/<a href="http://www.adobe.com/2006/flex/mx/internal::docFrameHandler" rel="nofollow">http://www.adobe.com/2006/flex/mx/internal::docFrameHandler</a>() at mx.managers::SystemManager/docFrameListener()</p> <p>Any ideas what that means ?</p> http://stackoverflow.com/questions/754542/how-to-access-actionscript-from-javascript-in-adobe-air/755181#755181 0 Answer by dirkgently for How to access Actionscript from Javascript in Adobe AIR dirkgently 2009-04-16T08:12:47Z 2009-04-17T04:24:58Z <blockquote> <p>You have to use <code>air.trace</code> where <code>air</code> is a predefined Javascript wrapper over utility AS packages.</p> </blockquote> <p>I was assuming you were doing AIR development using HTML/AJAX. </p> <p>However, otherwise, you need to use ExternalInterface to have the AS functions available to JS. Can you tell us why you need this?</p>