I have a library project that gets compiled into an SWC file, and includes shared code for several Flex Apps I'm working on. While I can access all the Classes within the library from Classes in my applications, Interfaces are only accessible by other Classes within the library. I was wondering why this is.
For example... Library: Class A Interface P Application: Class B extends A (this works) Class Q implements P (this won't compile) thanks, Adam

