0

How to import it in Flex?

import caurina.transitions.Tweener;

It says: 1120: Access of undefined property Tweener. When I do something like: Tweener.addTween(...

Thanks,

Yan
  • 17
  • 4

2 Answers2

3

You have to either

  • copy the tweener's SWC to the Flex library path or
  • copy the caurina folder to the Flex classpath or
  • copy the caurina folder to the root folder of your source code (where main Application class is located)
Amarghosh
  • 58,710
  • 11
  • 92
  • 121
0

I've found the problem, the problem was that my path was: "caurina/transitions/Tweener" instead of just being "caurina/transitions"

Yan
  • 17
  • 4