Help - Tweener Issue

Hey folks,

I’m currently assisting in developing a game for Facebook using a mix of Flex Builder 3.0 & Flash CS4.

Having a small issue in 2 classes that import the Tweener .swc file, and yes it is imported in my game project, under the libs directory. I’m pretty sure its the latest version of tweener as well.

The game is tested in Flash CS4. I have like 12 different symbols representing an icon; its an RPG. For example, one symbol would be a bag symbolizing the inventory, another would be a picture of the character, symbolizing the character page when clicked upon and so on and so forth. I click on one particular symbol, the inventory one, and I get the following in Flash CS4’s output, preventing a transition from occuring to pop up a list of items in the inventory when clicked upon in the .swf file. Here they are:

ReferenceError: Error #1065: Variable caurina.transitions::Tweener is not defined.
at ui.inventory::InventorySWF/show()[C:\Users\Owner\Documents\Projects\Flex Builder 3.0 Projects\flex-build program\src\ui\inventory\InventorySWF.as:94]
at ui.tv::Tv/onIconClick()[C:\Users\Owner\Documents\Projects\Flex Builder 3.0 Projects\flex-build program\src\ui v\Tv.as:61]

The main problem is the tweener importing, however other symbols that are linked to the same base class dont produce errors in the output once clicked upon. What could be the issue? Here is how I import Tweener right after the package declaration in the InventorySWF.as file,

import caurina.transitions.Tweener;

The 2nd error, located in the Tv.as class in the onIconClick() function is related to the initial undefined variable: as in error #1065. Any suggestions?

Any help would be appreciated.

Thank you.