Can not resolve a multiname reference unambiguously. flash.text:Font while work with purePdf

1.3k views Asked by At

I am working with purePDF. It looks the Font Class between playerglobal and purePDF is get conflicted.. Can someone please help me out!!!

Full Error

Can not resolve a multiname reference unambiguously. flash.text:Font (from C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks\libs\player\11.1\playerglobal.swc(flash.text:Font)) and org.purepdf:Font (from D:\proj\Top\libs\purePDF.swc(org.purepdf:Font)) are available. ResultPDF.mxml /Top/src/com/platina/view/result Unknown Flex Problem

I have seen a link related to this error!, but that doesn't help:(

Any thoughts? Thanks in advance!

1

There are 1 answers

0
Vesper On BEST ANSWER

This means that whenever you are trying to use flash.text.Font you have to write fully qualified class name like above, and whenever you need to use the class from purePDF, you need to write org.purepdf.Font. I repeat, everywhere in your code.