vote up 0 vote down star

How do i access the 'mx' or 'fl' namespaces in a Flex Builder Actionscript Project?

Do I need to include a certain .swc file?

I cant seem to find which one

flag

29% accept rate

2 Answers

vote up 0 vote down

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.

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.

link|flag
thanks. it wouldnt let me add just 'mx'. i had created an 'actionscript project' and turned out i had to add the 'Framework.swc' file to compile paths. i'm actually just wanting the easing equations (to use with gTween) and aren't using anything from Flex – Simon Apr 11 at 1:04
vote up 0 vote down
import mx.effects.easing.*;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.