My problems is that I have this value...75 seconds and I want to display in my Grid like 1:15 minutes... How can I do this ?
I'm trying this...
xmlCttSemAcao = new XMLListCollection(event.result..CTT);
var i:int = 0;
for each(var node:XML in xmlCttSemAcao)
{
xmlCttSemAcao[i].@DUR_CTT = (xmlCttSemAcao[i].@DUR_CTT / 60) %60;
i++;
}
xmlCttSemAcao.refresh();
gp2.refresh();
But my result for this example is: 1:25
Another example...56 seconds is displaying 0.933333