views:

16

answers:

1

How can I use two version of a library in the same project in Flex (using Eclipse).
(in my case the library is papervision3d , and I have written some code using the older version, but due to big changes many of the used function exist no more)

thx

+1  A: 

Well the best would be to rewrite your old code to use the new library. But Papervision3d gives you the source So change the namespace and point to the new Namespace when writing your new code. The only real downside besides added complexity is that you'll have to spell out your variable declarations if you use both versions in the same class.

RHicke