AS2 to AS3 convert

Hi, how to convert the following codes to AS3?

stop();
var lowHighScore=0;
myData = new LoadVars();
myData.load(“http://127.0.0.1/get_score.php”);

myData.onLoad = function(session) {

    for (var i=1;i<this['count']; i++){
        _root["n"+i].text = this['n'+i];
        _root["s"+i].text = this['s'+i];
    }
        
}

/////////////////////////////////////////////////////////
Note:
n and s are text box