Making a dynamically-created label in Flex/ArcGIS a clickable hyperlink
I have an ArcGIS map created with Flex. The labels created dynamically are the towns on the map. We have some PDF files that have some information about the towns on the map.
Is there a way to make those town labe开发者_运维技巧ls clickable so that they can display the PDF information on a new page?
There is a way :
var u:URLRequest=new URLRequest(pathToPdf);
navigateToURL(u,"_blank");
精彩评论