Hi I have an item renderer who has its data from a rss, here is the
structure, but in someway I can't make the link button to work this
way, here is the code.
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="497"
height="194" horizontalScrollPolicy="off">
<mx:Label text="{data.title}" width="452" height="35" fontSize="14"
id="titulo" fontWeight="bold"/>
<mx:Text text="{data.description}" width="399" height="105"
textAlign="left" enabled="true" fontSize="14" fontFamily="Arial"
color="#020F12"/>
<mx:LinkButton label="more" enabled="true" themeColor="#FF2A00"
click="navigateToURL(new URLRequest('{data.link}'))"/>
</mx:VBox>
when I put the URL on the url request like a normal string of http://
it works
everything works just fine, but the link button doesn't
I need help.
Gustavo