Original User: thejones23Lynn.Can you post the mxml code you are using? At first glance I would recommend looking into a link button to handle this. How many URLs will be returned? Is it only one every time? Can there be more than one? I had a similar situation and for my application I made an item renderer based on a link button. This contained my navigate to URL for a click event. Styled like a hyperlink:<mx:LinkButton xmlns:mx="http://www.adobe.com/2006/mxml"
label="{data.rPage.toString()"  toolTip="Click to open: {data.rPage}" color="blue" fontWeight="bold" click="{navigateToURL(new URLRequest(data.rPage));}">
</mx:LinkButton> Saved that file as its own mxml and the referenced it as an item renderer in my info window. Mine was in a datagrid, but a list might look better. infowindow:<mx:VBox width="100%" verticalScrollPolicy="auto">
  <mx:DataGrid  
   id="dg1"
   width="100%"
   dataProvider="{whatever gives you the data}"  
   
   <mx:columns>
    <mx:DataGridColumn dataField="rPage"   headerText="rPages" itemRenderer="com.esri.solutions.flexviewer.myrPageitemrenderer"/>
   </mx:columns>
  </mx:DataGrid>
 </mx:VBox>There may be a much easier solution so maybe posting your mxml will help.