how do I import a class to use inside Flex application? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T12:35:44Z http://stackoverflow.com/feeds/question/39856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/39856/how-do-i-import-a-class-to-use-inside-flex-application 0 how do I import a class to use inside Flex application? mmattax 2008-09-02T15:51:51Z 2008-12-30T15:26:47Z <p>I have an actionscript file that defines a class that I would like to use inside a Flex application. </p> <p>I have defined some custom controls in a actionscript file and then import them via the application tag:</p> <pre> <code> &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:scorecard="com.apterasoftware.scorecard.controls.*" ... &lt;/mx:Application&gt; </code> </pre> <p>but this code is not a flex component, rather it is a library for performing math routines, how do I import this class?</p> http://stackoverflow.com/questions/39856/how-do-i-import-a-class-to-use-inside-flex-application/39864#39864 5 Answer by Herms for how do I import a class to use inside Flex application? Herms 2008-09-02T15:56:51Z 2008-09-02T15:56:51Z <p>You'd need to import the class inside a script tag.</p> <pre><code>&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"&gt; &lt;mx:Script&gt; import com.apterasoftware.scorecard.controls.*; // Other imports go here // Functions and other code go here &lt;/mx:Script&gt; &lt;!-- Components and other MXML stuff go here --&gt; &lt;mx:VBox&gt; &lt;!-- Just a sample --&gt; &lt;/mx:VBox&gt; &lt;/mx:Application&gt; </code></pre> <p>Then you'll be able to reference that class anywhere else in your script tag. Depending on how the class is written you may not be able to use binding within the MXML, but you could define your own code to handle that.</p> <p>Namespace declarations are only used to import other MXML components. AS classes are imported using the import statement either within a Script block or another AS file.</p> http://stackoverflow.com/questions/39856/how-do-i-import-a-class-to-use-inside-flex-application/39932#39932 0 Answer by mmattax for how do I import a class to use inside Flex application? mmattax 2008-09-02T16:19:53Z 2008-09-02T16:19:53Z <p>@Herms,</p> <p>ah...I tried this but had a misspelled package...thanks!</p> http://stackoverflow.com/questions/39856/how-do-i-import-a-class-to-use-inside-flex-application/400550#400550 0 Answer by Niko Nyman for how do I import a class to use inside Flex application? Niko Nyman 2008-12-30T15:26:47Z 2008-12-30T15:26:47Z <p>@Herms: To clarify a little, namespace declarations can be used to "import" AS classes as well, when you're going to instantiate them using MXML.</p> <p>For example, consider having a custom visual component you've written entirely in AS, let's say <code>com.apterasoftware.scorecard.controls.MathVisualizer</code>. To use it within MXML:</p> <pre><code>&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:aptera="com.apterasoftware.scorecard.controls.*"&gt; &lt;aptera:MathVisualizer width="400" height="300" /&gt; &lt;/mx:Application&gt; </code></pre>