I'm having a problem return the above mentioned. I've mailed someone on this and they mentioned the $$$.score variable which  should return the confidence score of a particular rule in a grammar context. As can be seen below in the sample XML output from my test gramma this seems to be returning undefined. My grammar. I hope someone points out the blindingly obvious and makes me say Doh!! :)
<br><br><br>Grammar<br>=====================================<br>#ABNF 1.0;<br>language en-US;<br>mode voice;<br>tag-format &lt;lumenvox/1.0&gt;;<br><br>root $FullTagGrammar;<br><br>$everyone = everyone:&quot;everyone&quot;;
<br>$having = having:&quot;having&quot;;<br>$great = great:&quot;great&quot;;<br>$time = time:&quot;time&quot;;<br>$holidays = holidays:&quot;holidays&quot;;<br>$later = later:&quot;later&quot;;<br>$beach = beach:&quot;beach&quot;;
<br>$house = house:&quot;house&quot;;<br>$barbeque = barbeque:&quot;barbeque&quot;;<br>$beer = beer|beers:&quot;beer&quot;;<br>$see = see:&quot;see&quot;;<br>$soon = soon:&quot;soon&quot;;<br><br>$WordsList = ($everyone|$having|$great|$time|$holidays|$later|$beach|$house|$barbeque|$beer|$see|$soon){$ =$$};
<br><br><br>$Tag = [$WordsList{$.score = $$$.score}] $WordsList {$.wordslist = $$};<br><br>$FullTagGrammar = {$.tagslist =new Array} ($Tag {$.tagslist.push($$)} )&lt;1-&gt; [and $Tag{$.tagslist.push($$)}];<br><br><br><br>
Sample Output<br>===================================================<br>&nbsp;&lt;tagslist&gt;&lt;item index=0&gt;&lt;score&gt;[Undefined]&lt;/score&gt;&lt;wordslist&gt;having&lt;/wordslist&gt;&lt;/item&gt;&lt;item index=1&gt;&lt;score&gt;[Undefined]&lt;/score&gt;&lt;wordslist&gt;time&lt;/wordslist&gt;&lt;/item&gt;&lt;/tagslist&gt;
<br><br><br>