Thanks this is my first serious AS3 game :)
idk why the
function scoresCallback ( result:Object ):void
{
high.appendText("High score result:");//, success=" + result.success );
for ( var i:int = 0; i < result.list.length; i++ ){
var position:int = i + 1;
high.appendText("\n"+position + ". " + result.list[i].username + " - " + result.list[i].score );
}
}
is not making the High score visible :(
Yes it does just click deal twice the first time, its not like that on NG or on my comp idk why it is here? http://www.newgrounds.com/portal/view/499574
Thank you for your comments, this game was made as my 1st game using actionscript 3 so it was intended to be simple and built more upon. In the next game I plan to add level differences and music. Does anyone know why that error comes up after playing the game it gets the high score, and I copy pasted the example from the example for high scores :P