You could hack together a solution along the lines of:
1. A library swf, document class:
ActionScript Code:
package com.lib {
import com.lib.symbols.*
public class myLibrary {
public static const symbolReference:whateverSymbol
//etc
}
}
2. Then in your main swf load that swf and instatiate the symbols from it.
It seems unnecessary, but might come in handy if one were to attempt to use some form of dynamic library.
Although I have no experience with Flex itself, I imagine that it might be more relevant to you in this case

.