how do I import a class to use inside Flex application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T12:35:44Zhttp://stackoverflow.com/feeds/question/39856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/39856/how-do-i-import-a-class-to-use-inside-flex-application0how do I import a class to use inside Flex application?mmattax2008-09-02T15:51:51Z2008-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>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:scorecard="com.apterasoftware.scorecard.controls.*"
...
</mx:Application>
</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#398645Answer by Herms for how do I import a class to use inside Flex application?Herms2008-09-02T15:56:51Z2008-09-02T15:56:51Z<p>You'd need to import the class inside a script tag.</p>
<pre><code><mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
import com.apterasoftware.scorecard.controls.*;
// Other imports go here
// Functions and other code go here
</mx:Script>
<!-- Components and other MXML stuff go here -->
<mx:VBox>
<!-- Just a sample -->
</mx:VBox>
</mx:Application>
</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#399320Answer by mmattax for how do I import a class to use inside Flex application?mmattax2008-09-02T16:19:53Z2008-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#4005500Answer by Niko Nyman for how do I import a class to use inside Flex application?Niko Nyman2008-12-30T15:26:47Z2008-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><mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:aptera="com.apterasoftware.scorecard.controls.*">
<aptera:MathVisualizer width="400" height="300" />
</mx:Application>
</code></pre>