How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:37:35Zhttp://stackoverflow.com/feeds/question/739226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/739226/how-do-i-access-the-mx-or-fl-namespaces-in-a-flex-builder-actionscript-projec0How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project?Simon2009-04-11T00:14:30Z2009-08-27T15:00:03Z
<p>How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project?</p>
<p>Do I need to include a certain .swc file?</p>
<p>I cant seem to find which one</p>
http://stackoverflow.com/questions/739226/how-do-i-access-the-mx-or-fl-namespaces-in-a-flex-builder-actionscript-projec/739263#7392630Answer by Joel Hooks for How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project?Joel Hooks2009-04-11T00:46:48Z2009-04-11T02:46:37Z<p>You can just import mx, but be aware your project will carry a ton of weight from the Flex framework. All of the l package classes are in your Flash installation folder and need to be added as a source folder in your compiler paths in FB.</p>
<p>If you just want to use the easing function than the solution is easier than importing any of the MX packages. When I use GTween in AS3 projects I simply cut-n-paste the functions into my own static classes.</p>
http://stackoverflow.com/questions/739226/how-do-i-access-the-mx-or-fl-namespaces-in-a-flex-builder-actionscript-projec/739658#7396580Answer by Raul Agrait for How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project?Raul Agrait2009-04-11T07:09:32Z2009-04-11T07:09:32Z<pre><code>import mx.effects.easing.*;
</code></pre>