Hi Kicker56,
I'm not sure, with GenXML you can see the data, but then ...?
Well, Aeon shows these stats so maybe by looking at how this is done a better way can be found.
Still, you can get the info by querying the xbmc database like this:
queryvideodatabase(select count(*) from movie)
you'll get this back, which you can send directly to TTS.speak if you want:
<html>
<field>40</field>
</html>
you could use regex and {match.1}
for regex use this parameter:
<field>(.*)</field>
since you're looking for something to do, I'll let you figure out the rest of the queries...