How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:37:35Z http://stackoverflow.com/feeds/question/739226 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/739226/how-do-i-access-the-mx-or-fl-namespaces-in-a-flex-builder-actionscript-projec 0 How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project? Simon 2009-04-11T00:14:30Z 2009-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#739263 0 Answer by Joel Hooks for How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project? Joel Hooks 2009-04-11T00:46:48Z 2009-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#739658 0 Answer by Raul Agrait for How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project? Raul Agrait 2009-04-11T07:09:32Z 2009-04-11T07:09:32Z <pre><code>import mx.effects.easing.*; </code></pre>