I am trying to make a page counting system, which counts the total number of pages and which page the user is in.
I was able to do the total page count but I can not find a way to show the current page of it, I tried to use the position () method but I could not.
var arrMenuInterno = [
{ titulo: "Introdução",
telas: [
{arquivo: "ambev_VPO_gente_sld002.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld005.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld007.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld009.swf", tipo:""},
{arquivo: "ambev_VPO_gente_sld010.swf", tipo:""}
]
}
];
for(var i = 0;i < arrMenuInterno.length;i++){
_totalTelas = arrMenuInterno[i].telas.length;
}
$("#qtdTelas").html(+ localizaTelaAtual + "</b> de <b>" + _totalTelas + "</b>");